book_insert

  1. drupal
    1. 4.7
    2. 5 book.module
Versions
4.7 – 5 book_insert($node)

Implementation of hook_insert().

Code

modules/book.module, line 183

<?php
function book_insert($node) {
  db_query("INSERT INTO {book} (nid, vid, parent, weight) VALUES (%d, %d, %d, %d)", $node->nid, $node->vid, $node->parent, $node->weight);
}
?>