function _menu_parent_depth_limit in Drupal 7
Same name and namespace in other branches
- 6 modules/menu/menu.module \_menu_parent_depth_limit()
Find the depth limit for items in the parent select.
2 calls to _menu_parent_depth_limit()
- menu_node_prepare in modules/
menu/ menu.module - Implements hook_node_prepare().
- _menu_get_options in modules/
menu/ menu.module - Helper function to get the items of the given menu.
File
- modules/
menu/ menu.module, line 639 - Allows administrators to customize the site's navigation menus.
Code
function _menu_parent_depth_limit($item) {
return MENU_MAX_DEPTH - 1 - ($item['mlid'] && $item['has_children'] ? menu_link_children_relative_depth($item) : 0);
}