function aggregator_cron_queue_info
Implements hook_cron_queue_info().
Archivo
- drupal-7.x/
modules/ aggregator/ aggregator.module, line 337 - Used to aggregate syndicated content (RSS, RDF, and Atom).
Código
function aggregator_cron_queue_info() {
$queues['aggregator_feeds'] = array(
'worker callback' => 'aggregator_refresh',
'time' => 60,
);
return $queues;
}