You are here

function sms_clickatell_send_form in SMS Framework 5

Returns custom additions to be added to the send forms

1 string reference to 'sms_clickatell_send_form'
sms_clickatell_gateway_info in modules/sms_clickatell/sms_clickatell.module
Implementation of hook_gateway_info().

File

modules/sms_clickatell/sms_clickatell.module, line 71
Adds support for sending SMS messages using the Clickatell gateway.

Code

function sms_clickatell_send_form() {
  $form['country'] = array(
    '#type' => 'select',
    '#title' => t('Country'),
    '#multiple' => FALSE,
    '#options' => sms_clickatell_country_codes(),
    '#default_value' => -1,
  );
  return $form;
}