| Versionen | |
|---|---|
| drupal6 – drupal7 | template_preprocess_book_node_export_html(&$variables) |
Process variables for book-node-export-html.tpl.php.
The $variables array contains the following arguments:
modules/
<?php
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;
}
?>
Kommentare
Kommentar hinzufügen