You are here

geocoder_autocomplete.module in Geocoder autocomplete 8

Same filename and directory in other branches
  1. 7 geocoder_autocomplete.module

Hooks implementations.

File

geocoder_autocomplete.module
View 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

Namesort descending Description
geocoder_autocomplete_help Implements hook_help().