loqate.module in Loqate 8
Same filename and directory in other branches
Contains loqate.module.
File
loqate.moduleView 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
Name | Description |
---|---|
loqate_help | Implements hook_help(). |