trigger_cron

Definition

trigger_cron()
drupal/modules/trigger/trigger.module, line 306

Description

Implementation of hook_cron().

Code

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);
}