function system_run_cron
Same name and namespace in other branches
- 6.x drupal-6.x/modules/system/system.admin.inc \system_run_cron()
Menu callback: run cron manually.
3 string references to 'system_run_cron'
- drupal-6.bare.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.bare.database.php - Bare installation of Drupal 6.17, for test purposes.
- drupal-6.filled.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.filled.database.php - Filled installation of Drupal 6.17, for test purposes.
- system_menu in drupal-7.x/
modules/ system/ system.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ system/ system.admin.inc, line 2339 - Admin page callbacks for the system module.
Código
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');
}