- drupal
- 4.7
- 5 book.module
| Versions | |
| 4.7 – 5 |
book_node_visitor_html_post($node, $depth) |
Finishes up generation of printer-friendly HTML after visiting a
node. This function is a 'post-node' visitor function for
book_recurse().
- book_recurse in modules/book.module
- Traverses the book tree. Applies the $visit_pre() callback to each
node, is called recursively for each child of the node (in weight,
title order). Finally appends the output of the $visit_post()
callback to the output before returning the generated…
Code
modules/book.module, line 826
<?php
function book_node_visitor_html_post($node, $depth) {
return "</div>\n";
}
?>