You are here

function pmproject_node_update in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 pmproject/pmproject.module \pmproject_node_update()

Implements hook_node_update().

Related topics

File

pmproject/pmproject.module, line 293
Main module file for the PM Project module.

Code

function pmproject_node_update($node) {

  // Always rebuild the node's pmproject index entries on node save.
  pmproject_delete_node_index($node);
  pmproject_build_node_index($node);
}