function book_outline
Same name and namespace in other branches
- 7.x drupal-7.x/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 drupal-6.x/
modules/ book/ book.module - Implementation of hook_menu().
Archivo
- drupal-6.x/
modules/ book/ book.pages.inc, line 102 - User page callbacks for the book module.
Código
function book_outline($node) {
drupal_set_title(check_plain($node->title));
return drupal_get_form('book_outline_form', $node);
}