Definition

aggregator_cron()
drupal/modules/aggregator/aggregator.module, line 288

Description

Implementation of hook_cron().

Checks news feeds for updates once their refresh interval has elapsed.

Code

function aggregator_cron() {
  $result = db_query('SELECT * FROM {aggregator_feed} WHERE checked + refresh < :time', array(':time' => REQUEST_TIME));
  foreach ($result as $feed) {
    aggregator_refresh((array)$feed);
  }
}