Skip to content
Snippets Groups Projects
Select Git revision
  • develop
  • issue-556
  • master
  • topics/add-contribution-info
  • master-no-logins
  • issue-424
  • svn-trunk
  • svn-staging
  • svn-testing
  • 7.8
  • 7.7.3
  • 7.7.2
  • 7.7.1
  • 7.7
  • 7.6.1
  • 7.6
  • 7.5.1
  • 7.5
  • 7.4
  • 7.3.1
  • 7.3
  • 7.2
  • 7.1
  • 2012-04-18
  • 2012-04-03
  • 2012-04-02
  • 2012-03-01
  • 2012-02-07
  • 20120207
29 results

cron.php

Blame
  • Forked from UNL Information Services / UNL-CMS
    Source project has a limited visibility.
    cron.php 795 B
    <?php
    
    /**
     * @file
     * Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).
     */
    
    /**
     * Root directory of Drupal installation.
     */
    define('DRUPAL_ROOT', getcwd());
    
    include_once DRUPAL_ROOT . '/includes/unl_bootstrap.inc';
    include_once DRUPAL_ROOT . '/includes/bootstrap.inc';
    unl_bootstrap();
    drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
    
    if (!isset($_GET['cron_key']) || variable_get('cron_key', 'drupal') != $_GET['cron_key']) {
      watchdog('cron', 'Cron could not run because an invalid key was used.', array(), WATCHDOG_NOTICE);
      drupal_access_denied();
    }
    elseif (variable_get('maintenance_mode', 0)) {
      watchdog('cron', 'Cron could not run because the site is in maintenance mode.', array(), WATCHDOG_NOTICE);
      drupal_access_denied();
    }
    else {
      drupal_cron_run();
    }