hook_update

5 node.php hook_update($node)
6 node.php hook_update($node)
7 node.api.php hook_update($node)
8 node.api.php hook_update(Drupal node Node $node)

Respond to node updating.

This is a hook used by node modules. It is called to allow the module to take action when an edited node is being updated in the database by, for example, updating information in related tables.

Parameters

$node: The node being updated.

Return value

None.

To take action when nodes of any type are updated (not just nodes of the type(s) defined by this module), use hook_nodeapi() instead.

For a detailed usage example, see node_example.module.

Related topics

5 functions implement hook_update()

4 invocations of hook_update()

File

developer/hooks/node.php, line 279
These hooks are defined by node modules, modules that define a new kind of node.

Code

function hook_update($node) {
  db_query("UPDATE {mytable} SET extra = '%s' WHERE nid = %d", 
    $node->extra, $node->nid);
}
Login or register to post comments