taxonomy_tools_copier.api.php in Taxonomy Tools 8
Same filename and directory in other branches
Hooks provided by the Taxonomy Copier module.
File
taxonomy_tools_copier/taxonomy_tools_copier.api.phpView source
<?php
/**
* @file
* Hooks provided by the Taxonomy Copier module.
*/
/**
* Make changes to the copy of taxonomy term.
*
* @param stdClass $term
* Taxonomy term object
*/
function hook_taxonomy_tools_copier_term_copy_alter(&$term) {
$term->name = 'New term';
}
Functions
Name![]() |
Description |
---|---|
hook_taxonomy_tools_copier_term_copy_alter | Make changes to the copy of taxonomy term. |