function sms_gateway_info in SMS Framework 5
Same name and namespace in other branches
- 6.2 sms.module \sms_gateway_info()
- 6 sms.module \sms_gateway_info()
- 7 sms.module \sms_gateway_info()
Implementation of hook_gateway_info().
File
- ./
sms.module, line 62 - The core of the SMS Framework. Provides gateway managment and API for sending and receiving SMS messages.
Code
function sms_gateway_info() {
return array(
'log' => array(
'name' => t('Log only'),
'send' => 'sms_send_log',
),
);
}