You are here

function sms_incoming_queue_worker in SMS Framework 7

Queue worker callback for queued incoming messages.

Parameters

array $item: An array containing arguments for sending queued message.

See also

sms_cron_queue_info().

1 string reference to 'sms_incoming_queue_worker'
sms_cron_queue_info in ./sms.module
Implements hook_cron_queue_info().

File

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

Code

function sms_incoming_queue_worker(array $item) {
  sms_incoming($item['number'], $item['message'], $item['options']);
}