hook_actions_delete

  1. drupal
    1. 6 core.php
    2. 7
Versions
6 – 7 hook_actions_delete($aid)

Executes code after an action is deleted.

Parameters

$aid The action ID.

Related topics

Code

drupal/modules/system/system.api.php, line 3663

<?php
function hook_actions_delete($aid) {
  db_delete('actions_assignments')
    ->condition('aid', $aid)
    ->execute();
}
?>