function template_preprocess_book_node_export_html in Drupal 6
Same name and namespace in other branches
- 8 core/modules/book/book.module \template_preprocess_book_node_export_html()
- 7 modules/book/book.module \template_preprocess_book_node_export_html()
- 9 core/modules/book/book.module \template_preprocess_book_node_export_html()
Process variables for book-node-export-html.tpl.php.
The $variables array contains the following arguments:
- $node
- $children
See also
File
- modules/
book/ book.module, line 958 - Allows users to structure the pages of a site in a hierarchy or outline.
Code
function template_preprocess_book_node_export_html(&$variables) {
$variables['depth'] = $variables['node']->book['depth'];
$variables['title'] = check_plain($variables['node']->title);
$variables['content'] = $variables['node']->body;
}