function trigger_actions_delete

Implements hook_actions_delete().

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

File

drupal/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');
}