taxonomy_taxonomy_term_delete

7 taxonomy.module taxonomy_taxonomy_term_delete($term)
8 taxonomy.module taxonomy_taxonomy_term_delete(TaxonomyTerm $term)

Implements hook_taxonomy_term_delete().

Related topics

File

modules/taxonomy/taxonomy.module, line 1899
Enables the organization of content into categories.

Code

function taxonomy_taxonomy_term_delete($term) {
  if (variable_get('taxonomy_maintain_index_table', TRUE)) {
    // Clean up the {taxonomy_index} table when terms are deleted.
    db_delete('taxonomy_index')->condition('tid', $term->tid)->execute();
  }
}
Login or register to post comments