hook_actions_delete

  1. drupal
    1. 6 core.php function
    2. 7 system.api.php function
Drupal 7 hook_actions_delete($aid)

Executes code after an action is deleted.

Parameters

$aid: The action ID.

Related topics

1 function implements hook_actions_delete()

1 invocation of hook_actions_delete()

File

modules/system/system.api.php, line 3839
Hooks provided by Drupal core and the System module.

Code

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