function hook_node_postupdate in Hook Post Action 7
Gets called after a node has been updated to database.
Parameters
$node: A node object
See also
File
- ./
hook_post_action.api.php, line 150 - Documents API functions for hook_post_action module.
Code
function hook_node_postupdate($node) {
watchdog('hook_post_action_test', 'The updated node @type id is @nid from @function.', array(
'@nid' => $node->nid,
'@type' => $node->type,
'@function' => __FUNCTION__,
));
}