function book_view in Drupal 4
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.
File
- modules/
book.module, line 450 - Allows users to collaboratively author a book.
Code
function book_view(&$node, $teaser = FALSE, $page = FALSE) {
$node = node_prepare($node, $teaser);
}