node_test_node_update

7 node_test.module node_test_node_update($node)
8 node_test.module node_test_node_update(Node $node)

Implements hook_node_update().

File

modules/node/tests/node_test.module, line 144
Dummy module implementing node related hooks to test API interaction with the Node module.

Code

function node_test_node_update($node) {
  // Determine changes on update.
  if (!empty($node->original) && $node->original->title == 'test_changes') {
    if ($node->original->title != $node->title) {
      $node->title .= '_update';
    }
  }
}
Login or register to post comments