You are here

function apachesolr_exclude_node_node_revision_delete in Apache Solr Exclude Node 7

Implements hook_node_revision_delete().

1 call to apachesolr_exclude_node_node_revision_delete()
apachesolr_exclude_node_node_update in ./apachesolr_exclude_node.module
Implements hook_node_update().

File

./apachesolr_exclude_node.module, line 123
Module file for the Apache Solr Exclude Node module.

Code

function apachesolr_exclude_node_node_revision_delete($node) {
  db_delete('apachesolr_exclude_node')
    ->condition('vid', $node->vid)
    ->execute();
}