You are here

function notifications_tags_taxonomy_vocabulary_delete in Notifications 7

Implements hook_taxonomy_vocabulary_delete().

File

notifications_tags/notifications_tags.module, line 262
Subscriptions to taxonomy terms

Code

function notifications_tags_taxonomy_vocabulary_delete($vocabulary) {
  Notifications_Subscription::delete_multiple(array(), array(
    'vocabulary:vid' => $vocabulary->tid,
  ), FALSE);
}