drupal/core/modules/action/action.api.php

19 lines
276 B
PHP

<?php
/**
* @file
* Hooks provided by the Actions module.
*/
/**
* Executes code after an action is deleted.
*
* @param $aid
* The action ID.
*/
function hook_action_delete($aid) {
db_delete('actions_assignments')
->condition('aid', $aid)
->execute();
}