You are here

function book_node_visitor_html_post in Drupal 5

Same name and namespace in other branches
  1. 4 modules/book.module \book_node_visitor_html_post()

Finishes up generation of printer-friendly HTML after visiting a node. This function is a 'post-node' visitor function for book_recurse().

1 call to book_node_visitor_html_post()
book_recurse in modules/book/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…
1 string reference to 'book_node_visitor_html_post'
book_export_html in modules/book/book.module
This function is called by book_export() to generate HTML for export.

File

modules/book/book.module, line 810
Allows users to collaboratively author a book.

Code

function book_node_visitor_html_post($node, $depth) {
  return "</div>\n";
}