You are here

function openlayers_views_help in Openlayers 6.2

Same name and namespace in other branches
  1. 6 modules/openlayers_views/openlayers_views.module \openlayers_views_help()
  2. 7.2 modules/openlayers_views/openlayers_views.module \openlayers_views_help()

Implementation of hook_help().

File

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

Code

function openlayers_views_help($path, $arg) {
  switch ($path) {
    case 'admin/help#openlayers_views':
      return '<p>' . t('The OpenLayers Views module provides a set of plugins for Views.') . '</p>';
  }
}