Issue #1831540 followup by orb: Rewrite examples in taxonomy.api.php and remove references to synonyms.

8.0.x
Alex Pott 2013-06-17 23:25:42 +02:00
parent 097303e4bf
commit 025aa2a110
1 changed files with 6 additions and 10 deletions

View File

@ -83,11 +83,9 @@ function hook_taxonomy_vocabulary_insert(Drupal\taxonomy\Plugin\Core\Entity\Voca
* A taxonomy vocabulary entity.
*/
function hook_taxonomy_vocabulary_update(Drupal\taxonomy\Plugin\Core\Entity\Vocabulary $vocabulary) {
db_insert('mytable')
->fields(array(
'vid' => $vocabulary->id(),
'foo' => $vocabulary->foo,
))
db_update('mytable')
->fields(array('foo' => $vocabulary->foo))
->condition('vid', $vocabulary->id())
->execute();
}
@ -206,11 +204,9 @@ function hook_taxonomy_term_insert(Drupal\taxonomy\Term $term) {
* A taxonomy term entity.
*/
function hook_taxonomy_term_update(Drupal\taxonomy\Term $term) {
db_insert('mytable')
->fields(array(
'tid' => $term->id(),
'foo' => $term->foo,
))
db_update('mytable')
->fields(array('foo' => $term->foo))
->condition('tid', $term->id())
->execute();
}