| Versions | |
|---|---|
| 7 | hook_taxonomy_vocabulary_update($vocabulary) |
Act on taxonomy vocabularies when updated.
Modules implementing this hook can act on the vocabulary object when updated.
$vocabulary A taxonomy vocabulary object.
drupal/
<?php
function hook_taxonomy_vocabulary_update($vocabulary) {
$status = $vocabulary->synonyms ? TRUE : FALSE;
if ($vocabulary->synonyms) {
variable_set('taxonomy_' . $vocabulary->vid . '_synonyms', $status);
}
}
?>