function sms_gateway_info in SMS Framework 6
Same name and namespace in other branches
- 5 sms.module \sms_gateway_info()
- 6.2 sms.module \sms_gateway_info()
- 7 sms.module \sms_gateway_info()
Implementation of hook_gateway_info() for Log-only gateway.
File
- ./
sms.module, line 138 - 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',
),
);
}