_menu_helper_get_depth_titles

custom/menu_helper/menu_helper.module, line 135

Versions
6
_menu_helper_get_depth_titles()

Get menu depths as readable string

▾ 3 functions call _menu_helper_get_depth_titles()

menu_helper_reset_form_menu_edit_item_alter in custom/menu_helper/menu_helper_reset/menu_helper_reset.module
Implementation of hook_form_FORM_ID_alter().
menu_helper_submenu_admin_form in custom/menu_helper/menu_helper_submenu/menu_helper_submenu.admin.inc
Administration form for 'Menu helper submenu'
_menu_helper_blocks_append_configuration_to_form in custom/menu_helper/menu_helper_blocks/menu_helper_blocks.module
Add append block configuration settings to form or fieldset.

Code

<?php
function _menu_helper_get_depth_titles() {
  return array(
    t('Main Navigation'),
    t('1st level'),
    t('2nd level'),
    t('3rd level'),
    t('4th level'),
    t('5th level'),
    t('6th level'),
    t('7th level'),
    t('8th level'),
    t('9th level'),
  );
}
?>