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
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.