You are here

function openlayers_help in Openlayers 6.2

Same name and namespace in other branches
  1. 6 openlayers.module \openlayers_help()
  2. 7.2 openlayers.module \openlayers_help()

Implementation of hook_help().

File

./openlayers.module, line 21
Main OpenLayers API File

Code

function openlayers_help($path, $arg) {
  switch ($path) {
    case 'admin/help#openlayers':
      $output = '<p>' . t('The OpenLayers module is the base module for the
        OpenLayers suite of modules, and provides the main API.') . '</p>';
  }
  return '';
}