function aggregator_cron_queue_info

aggregator_cron_queue_info()

Implements hook_cron_queue_info().

File

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

Code

function aggregator_cron_queue_info() {
  $queues['aggregator_feeds'] = array(
    'worker callback' => 'aggregator_refresh',
    'time' => 60,
  );
  return $queues;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!aggregator!aggregator.module/function/aggregator_cron_queue_info/7.x