| 7 taxonomy.api.php | hook_taxonomy_vocabulary_insert($vocabulary) |
| 8 taxonomy.api.php | hook_taxonomy_vocabulary_insert(TaxonomyVocabulary $vocabulary) |
Act on taxonomy vocabularies when inserted.
Modules implementing this hook can act on the vocabulary object when saved to the database.
Parameters
$vocabulary: A taxonomy vocabulary object.
Related topics
1 function implements hook_taxonomy_vocabulary_insert()
1 invocation of hook_taxonomy_vocabulary_insert()
File
- modules/
taxonomy/ taxonomy.api.php, line 51 - Hooks provided by the Taxonomy module.
Code
function hook_taxonomy_vocabulary_insert($vocabulary) {
if ($vocabulary->synonyms) {
variable_set('taxonomy_' . $vocabulary->vid . '_synonyms', TRUE);
}
}
Login or register to post comments