You are here

function hook_post_action_example_node_postupdate in Hook Post Action 7

Same name and namespace in other branches
  1. 8 hook_post_action_example/hook_post_action_example.module \hook_post_action_example_node_postupdate()

Gets called after a node has been updated to database.

Parameters

$node: A node object

See also

hook_node_postsave()

hook_node_postinsert()

hook_node_postdelete()

hook_node_postupdate()

File

hook_post_action_example/hook_post_action_example.module, line 119

Code

function hook_post_action_example_node_postupdate($node) {
  watchdog('hook_post_action_test', "The updated node {$node->type} id is {$node->nid} from " . __FUNCTION__);
}