749768e7531adb955e99cccd7e48c0974025eebd
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / taxonomy_vocabulary_delete.twig
1 /**
2  * Implements hook_taxonomy_vocabulary_delete().
3  */
4 function {{ machine_name }}_taxonomy_vocabulary_delete($vocabulary) {
5   db_delete('mytable')
6     ->condition('vid', $vocabulary->vid)
7     ->execute();
8 }