book_view

  1. drupal
    1. 4.7
Versions
4.7 book_view(&$node, $teaser = FALSE, $page = FALSE)

Implementation of hook_view().

If not displayed on the main page, we render the node as a page in the book with extra links to the previous and next pages.

Code

modules/book.module, line 451

<?php
function book_view(&$node, $teaser = FALSE, $page = FALSE) {
  $node = node_prepare($node, $teaser);
}
?>