function hook_actions_delete

7.x system.api.php hook_actions_delete($aid)
6.x core.php hook_actions_delete($aid)

Execute 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 drupal-6.x/modules/trigger/trigger.module
Implementation of hook_actions_delete().
1 invocation of hook_actions_delete()
actions_delete in drupal-6.x/includes/actions.inc
Delete a single action from the database.

File

documentation-6.x/developer/hooks/core.php, line 94
These are the hooks that are invoked by the Drupal core.

Code

function hook_actions_delete($aid) {
  db_query("DELETE FROM {actions_assignments} WHERE aid = '%s'", $aid);
}