| Versionen | |
|---|---|
| drupal6 – drupal7 | system_run_cron() |
Menu callback: run cron manually.
modules/
<?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');
}
?>
Kommentare
Kommentar hinzufügen