You are here

loqate.module in Loqate 8

Same filename and directory in other branches
  1. 2.x loqate.module

Contains loqate.module.

File

loqate.module
View source
<?php

/**
 * @file
 * Contains loqate.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
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:
  }
}

Functions

Namesort descending Description
loqate_help Implements hook_help().