menu_helper_submenu_install

custom/menu_helper/menu_helper_submenu/menu_helper_submenu.install, line 11

Versions
6
menu_helper_submenu_install()

Implementation of hook_install().

Code

<?php
function menu_helper_submenu_install() {
  variable_set('menu_helper_submenu_front_menu', 'primary-links');
  variable_set('menu_helper_submenu_display_menus', array('primary-links', 'secondary-links'));
  variable_set('menu_helper_submenu_start_depth', 1);
  variable_set('menu_helper_submenu_back_text', t('&laquo Return to'));

  variable_set('menu_helper_submenu_dropdown_text', t('Please select a page'));
  variable_set('menu_helper_submenu_dropdown_show_submit', MENU_HELPER_SUBMENU_DROPDOWN_SUBMIT_YES);
  variable_set('menu_helper_submenu_dropdown_submit_text', t('Go'));

  variable_set('menu_helper_submenu_default_title', '<none>');
  variable_set('menu_helper_submenu_default_type', MENU_HELPER_SUBMENU_TYPE_DT);
  variable_set('menu_helper_submenu_default_show_descriptions', MENU_HELPER_SUBMENU_DESCRIPTION_YES);
  variable_set('menu_helper_submenu_default_show_back', MENU_HELPER_SUBMENU_BACK_YES);
}
?>