function _book_parent_depth_limit

_book_parent_depth_limit($book_link)

Finds the depth limit for items in the parent select.

Parameters

$book_link: A fully loaded menu link that is part of the book hierarchy.

Return value

The depth limit for items in the parent select.

File

modules/book/book.module, line 1026
Allows users to create and organize related content in an outline.

Code

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);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!book!book.module/function/_book_parent_depth_limit/7.x