aggregator_cron()
drupal/modules/aggregator/aggregator.module, line 288
Implementation of hook_cron().
Checks news feeds for updates once their refresh interval has elapsed.
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);
}
}