function system_run_automated_cron

Run the automated cron if enabled.

1 call to system_run_automated_cron()
drupal_page_footer in drupal/includes/common.inc
Performs end-of-request tasks.

File

drupal/modules/system/system.module, line 3553
Configuration system that lets administrators modify the workings of the site.

Code

function system_run_automated_cron() {

  // If the site is not fully installed, suppress the automated cron run.
  // Otherwise it could be triggered prematurely by Ajax requests during
  // installation.
  if (($threshold = variable_get('cron_safe_threshold', DRUPAL_CRON_DEFAULT_THRESHOLD)) > 0 && variable_get('install_task') == 'done') {
    $cron_last = variable_get('cron_last', NULL);
    if (!isset($cron_last) || REQUEST_TIME - $cron_last > $threshold) {
      drupal_cron_run();
    }
  }
}