function nexmo_gateway_info in Nexmo SMS Gateway 7
Implements hook_gateway_info().
File
- ./
nexmo.module, line 11 - Provides NEXMO implementation methods.
Code
function nexmo_gateway_info() {
return array(
'nexmo' => array(
'name' => 'Nexmo',
'send' => 'nexmo_send',
'receive' => TRUE,
'configure form' => 'nexmo_admin_form',
'send form' => 'nexmo_send_form',
),
);
}