| 7 taxonomy_test.module | taxonomy_test_taxonomy_term_update($term) |
| 8 taxonomy_test.module | taxonomy_test_taxonomy_term_update(TaxonomyTerm $term) |
Implements hook_taxonomy_term_update().
File
- modules/
simpletest/ tests/ taxonomy_test.module, line 37 - Test module for Taxonomy hooks and functions not used in core.
Code
function taxonomy_test_taxonomy_term_update($term) {
if (!empty($term->antonym)) {
db_merge('taxonomy_term_antonym')
->key(array('tid' => $term->tid))
->fields(array(
'name' => trim($term->antonym),
))
->execute();
}
}
Login or register to post comments