Act on taxonomy vocabularies when updated.
Modules implementing this hook can act on the vocabulary object when updated.
$vocabulary: A taxonomy vocabulary object.
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
function hook_taxonomy_vocabulary_update($vocabulary) {
db_update('mytable')
->fields(array(
'foo' => $vocabulary->foo,
))
->condition('vid', $vocabulary->vid)
->execute();
}