function book_outline

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

Parameters

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

Return value

string A HTML-formatted string with the outline form for a single node.

See also

book_menu()

1 string reference to 'book_outline'
book_menu in modules/book/book.module
Implements hook_menu().

File

modules/book/book.pages.inc, line 115

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.