You are here

function openlayers_help in Openlayers 6

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

Implementation of hook_help().

File

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

Code

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