function hook_taxonomy_vocabulary_update

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 drupal-7.x/modules/simpletest/tests/entity_crud_hook_test.module
Implements hook_taxonomy_vocabulary_update().
taxonomy_taxonomy_vocabulary_update in drupal-7.x/modules/taxonomy/taxonomy.module
Implements hook_taxonomy_vocabulary_update().
1 invocation of hook_taxonomy_vocabulary_update()
taxonomy_vocabulary_save in drupal-7.x/modules/taxonomy/taxonomy.module
Saves a vocabulary.

Archivo

drupal-7.x/modules/taxonomy/taxonomy.api.php, line 68
Hooks provided by the Taxonomy module.

Código

function hook_taxonomy_vocabulary_update($vocabulary) {
  db_update('mytable')->fields(array('foo' => $vocabulary->foo))->condition('vid', $vocabulary->vid)->execute();
}