| Versions | |
|---|---|
| 4.7 – 5 | book_insert($node) |
Implementation of hook_insert().
modules/
<?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);
}
?>