function hook_taxonomy_term_insert
Act on taxonomy terms when inserted.
Modules implementing this hook can act on the term object when saved to the database.
Parameters
$term: A taxonomy term object.
Related topics
4 functions implement hook_taxonomy_term_insert()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- entity_crud_hook_test_taxonomy_term_insert in drupal-7.x/
modules/ simpletest/ tests/ entity_crud_hook_test.module - Implements hook_taxonomy_term_insert().
- path_taxonomy_term_insert in drupal-7.x/
modules/ path/ path.module - Implements hook_taxonomy_term_insert().
- taxonomy_test_taxonomy_term_insert in drupal-7.x/
modules/ simpletest/ tests/ taxonomy_test.module - Implements hook_taxonomy_term_insert().
- trigger_taxonomy_term_insert in drupal-7.x/
modules/ trigger/ trigger.module - Implements hook_taxonomy_term_insert().
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.api.php, line 138 - Hooks provided by the Taxonomy module.
Código
function hook_taxonomy_term_insert($term) {
db_insert('mytable')->fields(array(
'tid' => $term->tid,
'foo' => $term->foo,
))->execute();
}