You are here

function trigger_actions_delete in Drupal 7

Same name and namespace in other branches
  1. 6 modules/trigger/trigger.module \trigger_actions_delete()

Implements hook_actions_delete().

Removes all trigger entries for the given action, when an action is deleted.

File

modules/trigger/trigger.module, line 627
Enables functions to be stored and executed at a later time.

Code

function trigger_actions_delete($aid) {
  db_delete('trigger_assignments')
    ->condition('aid', $aid)
    ->execute();
  drupal_static_reset('trigger_get_assigned_actions');
}