aggregator_cron_queue_info

Versions
7
aggregator_cron_queue_info()

Implements hook_cron_queue_info().

Code

modules/aggregator/aggregator.module, line 333

<?php
function aggregator_cron_queue_info() {
  $queues['aggregator_feeds'] = array(
    'worker callback' => 'aggregator_refresh',
    'time' => 60,
  );
  return $queues;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.