| Versionen | |
|---|---|
| drupal6 – drupal7 | book_outline($node) |
Menu callback; show the outline form for a single node.
modules/
<?php
function book_outline($node) {
drupal_set_title(check_plain($node->title));
return drupal_get_form('book_outline_form', $node);
}
?>
Kommentare
Kommentar hinzufügen