Issue #2663830 by chx: Remove action.api.php

8.1.x
Nathaniel Catchpole 2016-02-08 15:40:04 +09:00
parent 3ad9f73be7
commit e6d43ceadf
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
<?php
/**
* @file
* Hooks provided by the Actions module.
*/
/**
* @addtogroup hooks
* @{
*/
/**
* 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();
}
/**
* @} End of "addtogroup hooks".
*/