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