| 6 menu.module | _menu_parent_depth_limit($item) |
| 7 menu.module | _menu_parent_depth_limit($item) |
| 8 menu.module | _menu_parent_depth_limit($item) |
Find the depth limit for items in the parent select.
2 calls to _menu_parent_depth_limit()
File
- modules/
menu/ menu.module, line 352 - Allows administrators to customize the site navigation menu.
Code
function _menu_parent_depth_limit($item) {
return MENU_MAX_DEPTH - 1 - (($item['mlid'] && $item['has_children']) ? menu_link_children_relative_depth($item) : 0);
}
Login or register to post comments