You are here

function notifications_tags_taxonomy_term_delete in Notifications 7

Implements hook_taxonomy_term_delete().

File

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

Code

function notifications_tags_taxonomy_term_delete($term) {
  Notifications_Subscription::delete_multiple(array(), array(
    'term:tid' => $term->tid,
  ), FALSE);
}