function 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

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.