book_load

Versions
4.6 – 4.7
book_load($node)

Implementation of hook_load().

▾ 1 function calls book_load()

book_outline in modules/book.module
Implementation of function book_outline() Handles all book outline operations.

Code

modules/book.module, line 174

<?php
function book_load($node) {
  $book = db_fetch_object(db_query('SELECT * FROM {book} WHERE vid = %d', $node->vid));
  return $book;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.