system_run_cron

Versions
5 – 7
system_run_cron()

Menu callback: run cron manually.

Code

modules/system/system.module, line 1762

<?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'));
   }

   drupal_goto('admin/logs/status');
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.