function hook_taxonomy_vocabulary_update in Drupal 7
Act on taxonomy vocabularies when updated.
Modules implementing this hook can act on the vocabulary object when updated.
Parameters
$vocabulary: A taxonomy vocabulary object.
Related topics
2 functions implement hook_taxonomy_vocabulary_update()
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_update in modules/
simpletest/ tests/ entity_crud_hook_test.module  - Implements hook_taxonomy_vocabulary_update().
 - taxonomy_taxonomy_vocabulary_update in modules/
taxonomy/ taxonomy.module  - Implements hook_taxonomy_vocabulary_update().
 
1 invocation of hook_taxonomy_vocabulary_update()
- taxonomy_vocabulary_save in modules/
taxonomy/ taxonomy.module  - Saves a vocabulary.
 
File
- modules/
taxonomy/ taxonomy.api.php, line 68  - Hooks provided by the Taxonomy module.
 
Code
function hook_taxonomy_vocabulary_update($vocabulary) {
  db_update('mytable')
    ->fields(array(
    'foo' => $vocabulary->foo,
  ))
    ->condition('vid', $vocabulary->vid)
    ->execute();
}