Same name and namespace in other branches
  1. 10 core/core.api.php \hook_cron()
  2. 4.6.x developer/hooks/core.php \hook_cron()
  3. 4.7.x developer/hooks/core.php \hook_cron()
  4. 5.x developer/hooks/core.php \hook_cron()
  5. 6.x developer/hooks/core.php \hook_cron()
  6. 8.9.x core/core.api.php \hook_cron()
  7. 9 core/core.api.php \hook_cron()

Perform periodic actions.

Modules that require some commands to be executed periodically can implement hook_cron(). The engine will then call the hook whenever a cron run happens, as defined by the administrator. Typical tasks managed by hook_cron() are database maintenance, backups, recalculation of settings or parameters, automated mailing, and retrieving remote data.

Short-running or non-resource-intensive tasks can be executed directly in the hook_cron() implementation.

Long-running tasks and tasks that could time out, such as retrieving remote data, sending email, and intensive file tasks, should use the queue API instead of executing the tasks directly. To do this, first define one or more queues via hook_cron_queue_info(). Then, add items that need to be processed to the defined queues.

Related topics

17 functions implement hook_cron()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

aggregator_cron in modules/aggregator/aggregator.module
Implements hook_cron().
announcements_feed_cron in modules/announcements_feed/announcements_feed.module
Implements hook_cron().
common_test_cron in modules/simpletest/tests/common_test.module
Implements hook_cron().
common_test_cron_helper_cron in modules/simpletest/tests/common_test_cron_helper.module
Implements hook_cron().
dblog_cron in modules/dblog/dblog.module
Implements hook_cron().

... See full list

1 invocation of hook_cron()
drupal_cron_run in includes/common.inc
Executes a cron run when called.

File

modules/system/system.api.php, line 575
Hooks provided by Drupal core and the System module.

Code

function hook_cron() {

  // Short-running operation example, not using a queue:
  // Delete all expired records since the last cron run.
  $expires = variable_get('mymodule_cron_last_run', REQUEST_TIME);
  db_delete('mymodule_table')
    ->condition('expires', $expires, '>=')
    ->execute();
  variable_set('mymodule_cron_last_run', REQUEST_TIME);

  // Long-running operation example, leveraging a queue:
  // Fetch feeds from other sites.
  $result = db_query('SELECT * FROM {aggregator_feed} WHERE checked + refresh < :time AND refresh <> :never', array(
    ':time' => REQUEST_TIME,
    ':never' => AGGREGATOR_CLEAR_NEVER,
  ));
  $queue = DrupalQueue::get('aggregator_feeds');
  foreach ($result as $feed) {
    $queue
      ->createItem($feed);
  }
}