| Versionen | |
|---|---|
| drupal7 | hook_taxonomy_vocabulary_insert($vocabulary) |
Act on taxonomy vocabularies when inserted.
Modules implementing this hook can act on the vocabulary object when saved to the database.
$vocabulary A taxonomy vocabulary object.
modules/
<?php
function hook_taxonomy_vocabulary_insert($vocabulary) {
if ($vocabulary->synonyms) {
variable_set('taxonomy_' . $vocabulary->vid . '_synonyms', TRUE);
}
}
?>
Kommentare
Kommentar hinzufügen