book_node_visitor_html_post

  1. drupal
    1. 4.7
    2. 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().

▾ 1 function calls book_node_visitor_html_post()

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";
}
?>