hook_actions_delete

Versions
6 – 7
hook_actions_delete($aid)

Executes code after an action is deleted.

Parameters

$aid The action ID.

Related topics

Code

modules/system/system.api.php, line 2452

<?php
function hook_actions_delete($aid) {
  db_delete('actions_assignments')
    ->condition('aid', $aid)
    ->execute();
}
?>
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.