aggregator_cron_queue_info

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