function sms_txtlocal_gateway_info in SMS Framework 6
Implement hook_gateway_info()
Return value
SMS Framework gateway info array
File
- modules/sms_txtlocal/ sms_txtlocal.module, line 31 
- Txtlocal gateway module for Drupal SMS Framework. Outbound+Inbound
Code
function sms_txtlocal_gateway_info() {
  return array(
    'txtlocal' => array(
      'name' => 'Txtlocal',
      'send' => 'sms_txtlocal_send',
      'send form' => 'sms_txtlocal_send_form',
      'configure form' => 'sms_txtlocal_admin_form',
      'message_status_codes' => 'sms_txtlocal_message_status_codes',
    ),
  );
}