system_run_cron
- Versions
- 5 – 7
system_run_cron()
Menu callback: run cron manually.
Code
modules/system/system.admin.inc, line 1719
<?php
function system_run_cron() {
// Run cron manually
if (drupal_cron_run()) {
drupal_set_message(t('Cron ran successfully.'));
}
else {
drupal_set_message(t('Cron run failed.'), 'error');
}
drupal_goto('admin/reports/status');
}
?>Login or register to post comments 