Same name and namespace in other branches
  1. 4.7.x modules/aggregator.module \aggregator_cron()
  2. 5.x modules/aggregator/aggregator.module \aggregator_cron()
  3. 6.x modules/aggregator/aggregator.module \aggregator_cron()
  4. 7.x modules/aggregator/aggregator.module \aggregator_cron()
  5. 8.9.x core/modules/aggregator/aggregator.module \aggregator_cron()
  6. 9 core/modules/aggregator/aggregator.module \aggregator_cron()

Implementation of hook_cron().

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

File

modules/aggregator.module, line 183
Used to aggregate syndicated content (RSS and RDF).

Code

function aggregator_cron() {
  $result = db_query('SELECT * FROM {aggregator_feed} WHERE checked + refresh < %d', time());
  while ($feed = db_fetch_array($result)) {
    aggregator_refresh($feed);
  }
}