You are here

taxonomy_tools_copier.api.php in Taxonomy Tools 8

Same filename and directory in other branches
  1. 7 taxonomy_tools_copier/taxonomy_tools_copier.api.php

Hooks provided by the Taxonomy Copier module.

File

taxonomy_tools_copier/taxonomy_tools_copier.api.php
View 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

Namesort descending Description
hook_taxonomy_tools_copier_term_copy_alter Make changes to the copy of taxonomy term.