hook_actions_delete($aid)
Executes code after an action is deleted.
$aid The action ID.
drupal/modules/system/system.api.php, line 3663
<?php function hook_actions_delete($aid) { db_delete('actions_assignments') ->condition('aid', $aid) ->execute(); } ?>