Skip to content

Instantly share code, notes, and snippets.

@cmcintosh
Created December 15, 2015 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmcintosh/e695370870dba552e21b to your computer and use it in GitHub Desktop.
Save cmcintosh/e695370870dba552e21b to your computer and use it in GitHub Desktop.
Hook_gateway_info
/**
* Implement hook_gateway_info
*/
function sms_fowiz_gateway_info() {
return array(
'sms_fowiz' => array(
'name' => 'FOWiz Gateway',
'send' => 'sms_fowiz_send',
'recieve' => TRUE,
'configure form' => 'sms_fowiz_settings',
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment