You are here

function pmorganization_node_revision_delete in Drupal PM (Project Management) 7

Implements hook_node_revision_delete().

File

pmorganization/pmorganization.module, line 421

Code

function pmorganization_node_revision_delete($node) {

  // Notice that we're matching a single revision based on the node's vid.
  db_delete('pmorganization')
    ->condition('vid', $node->vid)
    ->execute();
}