You are here

function taxonomy_edge_taxonomy_vocabulary_delete in Taxonomy Edge 7

Same name and namespace in other branches
  1. 8 taxonomy_edge.module \taxonomy_edge_taxonomy_vocabulary_delete()
  2. 6 taxonomy_edge.module \taxonomy_edge_taxonomy_vocabulary_delete()

Implements hook_taxonomy_vocabulary_delete().

1 call to taxonomy_edge_taxonomy_vocabulary_delete()
taxonomy_edge_taxonomy_vocabulary_insert in ./taxonomy_edge.module
Implements hook_taxonomy_vocabulary_insert().

File

./taxonomy_edge.module, line 238
Optimization of taxonomy data model for SQL performance.

Code

function taxonomy_edge_taxonomy_vocabulary_delete($vocabulary) {
  db_delete('taxonomy_term_edge')
    ->condition('vid', $vocabulary->vid)
    ->execute();
}