book_outline

5 book.module book_outline($nid)
6 book.pages.inc book_outline($node)
7 book.pages.inc book_outline($node)
8 book.pages.inc book_outline(Node $node)

Menu callback: Shows the outline form for a single node.

Parameters

$node: The book node for which to show the outline.

1 string reference to 'book_outline'

File

modules/book/book.pages.inc, line 95
User page callbacks for the book module.

Code

function book_outline($node) {
  drupal_set_title($node->title);
  return drupal_get_form('book_outline_form', $node);
}
Login or register to post comments