Same name and namespace in other branches
  1. 6.x modules/book/book.module \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
Allows users to create and organize related content in an outline.

Code

function book_menu_name($bid) {
  return 'book-toc-' . $bid;
}