geocoder_autocomplete.module in Geocoder autocomplete 8
Same filename and directory in other branches
Hooks implementations.
File
geocoder_autocomplete.moduleView source
<?php
/**
* @file
* Hooks implementations.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function geocoder_autocomplete_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the prova module.
case 'help.page.geocoder_autocomplete':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Geographic reference autocomplete') . '</p>';
$output .= '<p>' . t('Data cames from Google services') . '</p>';
return $output;
default:
}
}
Functions
Name | Description |
---|---|
geocoder_autocomplete_help | Implements hook_help(). |