function ad_actions_adapi in Advertisement 6.2
Same name and namespace in other branches
- 6.3 actions/ad_actions.module \ad_actions_adapi()
- 7 actions/ad_actions.module \ad_actions_adapi()
Implementation of hook_adapi().
File
- actions/
ad_actions.module, line 78 - Enable ad triggers and actions.
Code
function ad_actions_adapi($op, $node) {
if ($op == 'statistics_increment') {
// trigger whenever statistics are incremented
module_invoke_all('ad_actions_trigger', $node['action'], $node);
}
}