You are here

function loqate_help in Loqate 8

Same name and namespace in other branches
  1. 2.x loqate.module \loqate_help()

Implements hook_help().

File

./loqate.module, line 13
Contains loqate.module.

Code

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

    // Main module help for the loqate module.
    case 'help.page.loqate':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module provides the integration with Loqate address lookup API.') . '</p>';
      return $output;
    default:
  }
}