| 5 aggregator.module | aggregator_cron() |
| 6 aggregator.module | aggregator_cron() |
| 7 aggregator.module | aggregator_cron() |
| 8 aggregator.module | aggregator_cron() |
Implementation of hook_cron().
Checks news feeds for updates once their refresh interval has elapsed.
File
- modules/
aggregator.module, line 235 - Used to aggregate syndicated content (RSS, RDF, and Atom).
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);
}
}
Login or register to post comments