function book_outline

7.x book.pages.inc book_outline($node)
6.x book.pages.inc book_outline($node)

Menu callback; show the outline form for a single node.

1 string reference to 'book_outline'
book_menu in drupal-6.x/modules/book/book.module
Implementation of hook_menu().

File

drupal-6.x/modules/book/book.pages.inc, line 102
User page callbacks for the book module.

Code

function book_outline($node) {
  drupal_set_title(check_plain($node->title));
  return drupal_get_form('book_outline_form', $node);
}