| 7 system.module | system_run_automated_cron() |
| 8 system.module | system_run_automated_cron() |
Run the automated cron if enabled.
1 call to system_run_automated_cron()
File
- modules/
system/ system.module, line 3495 - 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();
}
}
}
Login or register to post comments