aggregator_cron

Versions
4.6 – 7
aggregator_cron()

Implementation of hook_cron().

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

Code

modules/aggregator.module, line 235

<?php
function aggregator_cron() {
  $result = db_query('SELECT * FROM {aggregator_feed} WHERE checked + refresh < %d', time());
  while ($feed = db_fetch_array($result)) {
    aggregator_refresh($feed);
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.