You are here

function sms_simplegateway_gateway_info in SMS Framework 6

Implement hook_gateway_info()

File

modules/sms_simplegateway/sms_simplegateway.module, line 19
Simple gateway module for Drupal SMS Framework. Outbound+Inbound

Code

function sms_simplegateway_gateway_info() {
  return array(
    'simplegateway' => array(
      'name' => 'Simple gateway',
      'send' => 'sms_simplegateway_send',
      'configure form' => 'sms_simplegateway_admin_form',
    ),
  );
}