function yr_verdata_cron_queue_info in Yr Weatherdata 7
Implementation of hook_cron_queue_info().
File
- ./
yr_verdata.module, line 89 - yr_verdata.module This file contains the code for getting the forecast from yr.no and displaying it on a Drupal site.
Code
function yr_verdata_cron_queue_info() {
$queues['yr_verdata_locations'] = array(
'worker callback' => '_yr_verdata_refresh_xml',
'time' => 20,
);
return $queues;
}