You are here

function sms_gateway_info in SMS Framework 6.2

Same name and namespace in other branches
  1. 5 sms.module \sms_gateway_info()
  2. 6 sms.module \sms_gateway_info()
  3. 7 sms.module \sms_gateway_info()

Implements hook_gateway_info().

File

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

Code

function sms_gateway_info() {
  return array(
    'log' => array(
      'name' => t('Log only'),
      'send' => 'sms_send_log',
    ),
  );
}