Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / taxonomy_term_update.twig
1 /**
2  * Implements hook_taxonomy_term_update().
3  */
4 function {{ machine_name }}_taxonomy_term_update($term) {
5   db_update('mytable')
6     ->fields(array('foo' => $term->foo))
7     ->condition('tid', $term->tid)
8     ->execute();
9 }