function book_menu_name

Same name and namespace in other branches
  1. 7.x drupal-7.x/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 drupal-6.x/modules/book/book.module
Implementation of hook_nodeapi().
book_outline_form_submit in drupal-6.x/modules/book/book.pages.inc
Handles book outline form submissions from the outline tab.
book_toc in drupal-6.x/modules/book/book.module
Returns an array of book pages in table of contents order.
_book_update_outline in drupal-6.x/modules/book/book.module
Common helper function to handles additions and updates to the book outline.

Archivo

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

Código

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