You are here

function classified_notifications_cron_queue_info in Classified Ads 7.3

Implements hook_cron_queue_info().

Declare our worker to actually deliver mails.

File

modules/classified_notifications/classified_notifications.module, line 168
Optional notification features for classified module.

Code

function classified_notifications_cron_queue_info() {
  $queues['classified_notifications'] = array(
    'worker callback' => 'classified_notifications_deliver',
    'time' => 15,
  );
  return $queues;
}