You are here

function nexmo_form_sms_admin_default_form_alter in Nexmo SMS Gateway 7

Implements hook_form_FORM_ID_alter().

File

./nexmo.module, line 64
Provides NEXMO implementation methods.

Code

function nexmo_form_sms_admin_default_form_alter(&$form, &$form_state, $form_id) {
  if (isset($form['Nexmo']['id']['#markup']) && $form['Nexmo']['id']['#markup'] == 'nexmo') {
    $form['Nexmo']['configure']['#markup'] = l(t('configure'), 'admin/smsframework/gateways/nexmo');
  }
}