function book_outline in Drupal 6
Same name and namespace in other branches
- 4 modules/book.module \book_outline()
- 5 modules/book/book.module \book_outline()
- 7 modules/book/book.pages.inc \book_outline()
Menu callback; show the outline form for a single node.
1 string reference to 'book_outline'
- book_menu in modules/
book/ book.module - Implementation of hook_menu().
File
- 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);
}