You are here

function nexmo_help in Nexmo SMS Gateway 7

Implements hook_help().

File

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

Code

function nexmo_help($path, $arg) {
  switch ($path) {
    case 'admin/help#nexmo':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Nexmo SMS Gateway module provides an integration between <a href="https://www.nexmo.com" target="_blank">Nexmo SMS</a> service and <a href="https://www.drupal.org/project/smsframework" target="_blank">SMS framework</a> module.') . '</p>';
      $output .= '<h3>' . t('Uses') . '</h3>';
      $output .= '<p>' . t('This module requires NEXMO subscription. <a href="https://dashboard.nexmo.com/sign-up" target="_blank">Click here</a> to sign-up with NEXMO.') . '</p>';
      return $output;
  }
}