| Versionen | |
|---|---|
| drupal6 – drupal7 | _book_parent_depth_limit($book_link) |
Find the depth limit for items in the parent select.
modules/
<?php
function _book_parent_depth_limit($book_link) {
return MENU_MAX_DEPTH - 1 - (($book_link['mlid'] && $book_link['has_children']) ? menu_link_children_relative_depth($book_link) : 0);
}
?>
Kommentare
Kommentar hinzufügen