trigger_cron()
drupal/modules/trigger/trigger.module, line 306
Implementation of hook_cron().
function trigger_cron() {
$aids = _trigger_get_hook_aids('cron');
$context = array(
'hook' => 'cron',
'op' => '',
);
// Cron does not act on any specific object.
$object = NULL;
actions_do(array_keys($aids), $object, $context);
}