book_insert

Definition

book_insert($node)
book/book.module, line 185

Description

Implementation of hook_insert().

Code

<?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);
}
?>