function book_menu_name
Generates the corresponding menu name from a book ID.
Parameters
$bid: The book ID for which to make a menu name.
Return value
The menu name.
5 calls to book_menu_name()
- book_node_insert in modules/
book/ book.module - Implements hook_node_insert().
- book_node_update in modules/
book/ book.module - Implements hook_node_update().
- book_outline_form_submit in modules/
book/ book.pages.inc - Form submission handler for book_outline_form().
- book_toc in modules/
book/ book.module - Returns an array of book pages in table of contents order.
- _book_update_outline in modules/
book/ book.module - Handles additions and updates to the book outline.
File
-
modules/
book/ book.module, line 867
Code
function book_menu_name($bid) {
return 'book-toc-' . $bid;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.