| 1 |
<?php
|
| 2 |
// $Id: cron.php,v 1.42 2009/02/08 20:27:51 webchick Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).
|
| 7 |
*/
|
| 8 |
|
| 9 |
/**
|
| 10 |
* Root directory of Drupal installation.
|
| 11 |
*/
|
| 12 |
define('DRUPAL_ROOT', getcwd());
|
| 13 |
|
| 14 |
include_once DRUPAL_ROOT . '/includes/bootstrap.inc';
|
| 15 |
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
| 16 |
|
| 17 |
if (!isset($_GET['cron_key']) || variable_get('cron_key', 'drupal') != $_GET['cron_key']) {
|
| 18 |
watchdog('cron', 'Cron could not run because an invalid key was used.', array(), WATCHDOG_NOTICE);
|
| 19 |
drupal_access_denied();
|
| 20 |
}
|
| 21 |
elseif (variable_get('maintenance_mode', 0)) {
|
| 22 |
watchdog('cron', 'Cron could not run because the site is in maintenance mode.', array(), WATCHDOG_NOTICE);
|
| 23 |
drupal_access_denied();
|
| 24 |
}
|
| 25 |
else {
|
| 26 |
drupal_cron_run();
|
| 27 |
}
|