You are here

function sms_clickatell_gateway_info in SMS Framework 6

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

Implement hook_gateway_info()

Return value

SMS Framework gateway info array

File

modules/sms_clickatell/sms_clickatell.module, line 43
Clickatell gateway module for Drupal SMS Framework. Outbound+Inbound+Receipts

Code

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