hook_actions_delete($aid)
contributions/docs/developer/hooks/core.php, line 92
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);
}