You are here

function book_menu_name in Drupal 6

Same name and namespace in other branches
  1. 7 modules/book/book.module \book_menu_name()

Generate the corresponding menu name from a book ID.

4 calls to book_menu_name()
book_nodeapi in modules/book/book.module
Implementation of hook_nodeapi().
book_outline_form_submit in modules/book/book.pages.inc
Handles book outline form submissions from the outline tab.
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
Common helper function to handles additions and updates to the book outline.

File

modules/book/book.module, line 612
Allows users to structure the pages of a site in a hierarchy or outline.

Code

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