system_cron_settings
- Versions
- 4.7
system_cron_settings()
Return the cron status and errors for admin/settings.
Code
modules/system.module, line 514
<?php
function system_cron_settings() {
$cron_last = variable_get('cron_last', NULL);
if (is_numeric($cron_last)) {
$status = t('Cron is running. The last cron job ran %time ago.', array('%time' => format_interval(time() - $cron_last)));
}
else {
$status = t('Cron has not run. It appears cron jobs have not been setup on your system. Please check the help pages for <a href="%url">configuring cron jobs</a>.', array('%url' => 'http://drupal.org/cron'));
}
$form['settings'] = array('#type' => 'item', '#value' => $status);
return $form;
}
?>Login or register to post comments 