You are here

function taxonomy_entity_index_taxonomy_term_delete in Taxonomy Entity Index 7

Same name and namespace in other branches
  1. 8 taxonomy_entity_index.module \taxonomy_entity_index_taxonomy_term_delete()

Implements hook_taxonomy_term_delete().

File

./taxonomy_entity_index.module, line 57

Code

function taxonomy_entity_index_taxonomy_term_delete($term) {
  db_delete('taxonomy_entity_index')
    ->condition('tid', $term->tid)
    ->execute();
}