hook_actions_delete
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();
}

