You are here

function sms_twilio_gateway_info in Twilio SMS Integration 7.2

Same name and namespace in other branches
  1. 6 sms_twilio.module \sms_twilio_gateway_info()
  2. 7 sms_twilio.module \sms_twilio_gateway_info()

Implements hook_gateway_info().

File

./sms_twilio.module, line 14
Adds support for sending SMS messages using the Twilio gateway.

Code

function sms_twilio_gateway_info() {
  return array(
    'twilio' => array(
      'name' => 'Twilio',
      'configure form' => 'sms_twilio_admin_form',
      'receive' => TRUE,
      'send' => 'sms_twilio_send',
      'send form' => 'sms_twilio_send_form',
    ),
  );
}