Merge branch 'MDL-68782-master' of git://github.com/aanabit/moodle
[moodle.git] / admin / cli / cron.php
blobfe726830117cb4e6728757956cb7ec0dea599b3d
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * CLI cron
21 * This script looks through all the module directories for cron.php files
22 * and runs them. These files can contain cleanup functions, email functions
23 * or anything that needs to be run on a regular basis.
25 * @package core
26 * @subpackage cli
27 * @copyright 2009 Petr Skoda (http://skodak.org)
28 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31 define('CLI_SCRIPT', true);
33 require(__DIR__.'/../../config.php');
34 require_once($CFG->libdir.'/clilib.php'); // cli only functions
35 require_once($CFG->libdir.'/cronlib.php');
37 // now get cli options
38 list($options, $unrecognized) = cli_get_params(
39 array(
40 'help' => false,
41 'stop' => false,
43 array(
44 'h' => 'help',
45 's' => 'stop',
49 if ($unrecognized) {
50 $unrecognized = implode("\n ", $unrecognized);
51 cli_error(get_string('cliunknowoption', 'admin', $unrecognized));
54 if ($options['help']) {
55 $help =
56 "Execute periodic cron actions.
58 Options:
59 -h, --help Print out this help
60 -s, --stop Notify all other running cron processes to stop after the current task
62 Example:
63 \$sudo -u www-data /usr/bin/php admin/cli/cron.php
66 echo $help;
67 die;
70 if ($options['stop']) {
71 // By clearing the caches this signals to other running processes
72 // to exit after finishing the current task.
73 \core\task\manager::clear_static_caches();
74 die;
77 \core\local\cli\shutdown::script_supports_graceful_exit();
79 cron_run();