hook_actions_delete
- Versions
- 6 – 7
hook_actions_delete($aid)
Execute code after an action is deleted.
Parameters
$aid The action ID.
Related topics
Code
developer/hooks/core.php, line 92
<?php
function hook_actions_delete($aid) {
db_query("DELETE FROM {actions_assignments} WHERE aid = '%s'", $aid);
}
?>Login or register to post comments 