function hook_taxonomy_vocabulary_delete
Respond to the deletion of taxonomy vocabularies.
Modules implementing this hook can respond to the deletion of taxonomy vocabularies from the database.
Parameters
$vocabulary: A taxonomy vocabulary object.
Related topics
1 function implements hook_taxonomy_vocabulary_delete()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- entity_crud_hook_test_taxonomy_vocabulary_delete in drupal-7.x/
modules/ simpletest/ tests/ entity_crud_hook_test.module - Implements hook_taxonomy_vocabulary_delete().
1 invocation of hook_taxonomy_vocabulary_delete()
- taxonomy_vocabulary_delete in drupal-7.x/
modules/ taxonomy/ taxonomy.module - Delete a vocabulary.
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.api.php, line 84 - Hooks provided by the Taxonomy module.
Código
function hook_taxonomy_vocabulary_delete($vocabulary) {
db_delete('mytable')->condition('vid', $vocabulary->vid)->execute();
}