You are here

function openlayers_layers_help in Openlayers 6

Implementation of hook_help().

File

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

Code

function openlayers_layers_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#openlayers_layers':
      $output = '<p>' . t('Provides a wide variety of freely available layers.') . '</p>';
      return $output;
  }
}