hook_actions_delete($aid)
drupal/modules/trigger/trigger.api.php, line 89
Execute code after an action is deleted.
$aid The action ID.
| Name | Description |
|---|---|
| Hooks | Allow modules to interact with the Drupal core. |
function hook_actions_delete($aid) {
db_query("DELETE FROM {actions_assignments} WHERE aid = '%s'", $aid);
}