You are here

function _scheduler_lightweight_cron_submit in Scheduler 7

Form submission handler for _scheduler_lightweight_cron().

1 string reference to '_scheduler_lightweight_cron_submit'
_scheduler_lightweight_cron in ./scheduler.admin.inc
Form constructor for the lightweight cron form to allow a manual run.

File

./scheduler.admin.inc, line 454
Administration forms for the Scheduler module.

Code

function _scheduler_lightweight_cron_submit() {

  // Load the cron functions file.
  module_load_include('inc', 'scheduler', 'scheduler.cron');
  _scheduler_run_cron();
}