trigger_cron
- Versions
- 6 – 7
trigger_cron()
Implementation of hook_cron().
Code
modules/trigger/trigger.module, line 314
<?php
function trigger_cron() {
$aids = _trigger_get_hook_aids('cron', 'run');
$context = array(
'hook' => 'cron',
'op' => 'run',
);
// Cron does not act on any specific object.
$object = NULL;
actions_do(array_keys($aids), $object, $context);
}
?>Login or register to post comments 