1 book.module book_menu_name($bid)

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.:

File

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

Code

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