cron.php

  1. 7.x drupal-7.x/cron.php
  2. 6.x drupal-6.x/cron.php

Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).

File

drupal-6.x/cron.php
View source
  1. <?php
  2. /**
  3. * @file
  4. * Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).
  5. */
  6. include_once './includes/bootstrap.inc';
  7. drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
  8. drupal_cron_run();