| Versionen | |
|---|---|
| drupal6 – drupal7 | hook_actions_delete($aid) |
Execute code after an action is deleted.
$aid The action ID.
developer-docs/
<?php
function hook_actions_delete($aid) {
db_query("DELETE FROM {actions_assignments} WHERE aid = '%s'", $aid);
}
?>
Kommentare
Kommentar hinzufügen