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
2 functions implement hook_taxonomy_vocabulary_delete()
Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.
- EntityCrudHookTestHooks::taxonomyVocabularyDelete in core/
modules/ system/ tests/ modules/ entity_crud_hook_test/ src/ Hook/ EntityCrudHookTestHooks.php - Implements hook_ENTITY_TYPE_delete() for taxonomy_vocabulary entities.
- entity_crud_hook_test_taxonomy_vocabulary_delete in modules/
simpletest/ tests/ entity_crud_hook_test.module - Implements hook_taxonomy_vocabulary_delete().
1 invocation of hook_taxonomy_vocabulary_delete()
- taxonomy_vocabulary_delete in modules/
taxonomy/ taxonomy.module - Deletes a vocabulary.
File
-
modules/
taxonomy/ taxonomy.api.php, line 84
Code
function hook_taxonomy_vocabulary_delete($vocabulary) {
db_delete('mytable')->condition('vid', $vocabulary->vid)
->execute();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.