You are here

function sms_cron_queue_info in SMS Framework 7

Implements hook_cron_queue_info().

File

./sms.module, line 168
The core of the SMS Framework. Provides gateway management and API for sending and receiving SMS messages.

Code

function sms_cron_queue_info() {
  return array(
    'sms_incoming' => array(
      'worker callback' => 'sms_incoming_queue_worker',
    ),
  );
}