| 6 core.php | hook_actions_delete($aid) |
| 7 system.api.php | hook_actions_delete($aid) |
| 8 system.api.php | 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 3840 - Hooks provided by Drupal core and the System module.
Code
function hook_actions_delete($aid) {
db_delete('actions_assignments')
->condition('aid', $aid)
->execute();
}
Login or register to post comments