book_insert
- Versions
- 4.6 – 5
book_insert($node)
Implementation of hook_insert().
Code
modules/book/book.module, line 185
<?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);
}
?>Login or register to post comments 