| Versionen | |
|---|---|
| drupal7 | hook_node_update($node) |
The node being updated.
$node The node the action is being performed on.
None.
modules/
<?php
function hook_node_update($node) {
db_update('mytable')
->fields(array('extra' => $node->extra))
->condition('nid', $node->nid)
->execute();
}
?>
Kommentare
Kommentar hinzufügen