function trigger_actions_delete
Same name and namespace in other branches
- 7.x drupal-7.x/modules/trigger/trigger.module \trigger_actions_delete()
Implementation of hook_actions_delete().
Remove all trigger entries for the given action, when deleted.
Archivo
- drupal-6.x/
modules/ trigger/ trigger.module, line 433 - Enables functions to be stored and executed at a later time when triggered by other modules or by one of Drupal's core API hooks.
Código
function trigger_actions_delete($aid) {
db_query("DELETE FROM {trigger_assignments} WHERE aid = '%s'", $aid);
}