You are here

function mailgun_help in Mailgun 8

Same name and namespace in other branches
  1. 7 mailgun.module \mailgun_help()

Implements hook_help().

File

./mailgun.module, line 13
Contains mailgun.module.

Code

function mailgun_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the mailgun module.
    case 'help.page.mailgun':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Enables site to send emails using Mailgun.com') . '</p>';
      return $output;
    default:
  }
}