You are here

function sms_clickatell_gateway_info in SMS Framework 5

Same name and namespace in other branches
  1. 6 modules/sms_clickatell/sms_clickatell.module \sms_clickatell_gateway_info()

Implementation of hook_gateway_info().

File

modules/sms_clickatell/sms_clickatell.module, line 11
Adds support for sending SMS messages using the Clickatell gateway.

Code

function sms_clickatell_gateway_info() {
  return array(
    'clickatell' => array(
      'name' => 'Clickatell',
      'configure form' => 'sms_clickatell_admin_form',
      'send' => 'sms_clickatell_send',
      'send form' => 'sms_clickatell_send_form',
    ),
  );
}