function video_cron_queue_info in Video 7
Same name and namespace in other branches
- 7.2 video.module \video_cron_queue_info()
Implmentation of hook_cron_queue_info()
File
- ./
video.module, line 134
Code
function video_cron_queue_info() {
$queues['video_queue'] = array(
'worker callback' => 'video_queue_process',
'time' => variable_get('video_queue_timeout', 90),
);
return $queues;
}