You are here

function openlayers_filters_help in Openlayers 6.2

Same name and namespace in other branches
  1. 6 modules/openlayers_filters/openlayers_filters.module \openlayers_filters_help()

Implementation of hook_help().

File

modules/openlayers_filters/openlayers_filters.module, line 14
This file holds the main Drupal hook functions and private functions for the openlayers_filters module.

Code

function openlayers_filters_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#openlayers_filters':
      $output = '<p>' . t('The OpenLayers Filters module provides input filters
        to allow for inline maps.') . '</p>';
      return $output;
  }
}