function hook_actions_delete

Executes code after an action is deleted.

Parameters

$aid: The action ID.

Related topics

1 function implements hook_actions_delete()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

trigger_actions_delete in modules/trigger/trigger.module
Implements hook_actions_delete().
1 invocation of hook_actions_delete()
actions_delete in includes/actions.inc
Deletes a single action from the database.

File

modules/system/system.api.php, line 4052

Code

function hook_actions_delete($aid) {
    db_delete('actions_assignments')->condition('aid', $aid)
        ->execute();
}

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