You are here

function sparkpost_help in Sparkpost email 8

Same name and namespace in other branches
  1. 8.2 sparkpost.module \sparkpost_help()

Implements hook_help().

File

./sparkpost.module, line 13
Contains sparkpost.module.

Code

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

    // Main module help for the Sparkpost module.
    case 'help.page.sparkpost':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Integrates Drupal site with Sparkpost - transactional mail service.') . '</p>';
      return $output;
    default:
  }
}