You are here

function openlayers_behaviors_help in Openlayers 6

Implementation of hook_help().

File

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

Code

function openlayers_behaviors_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#openlayers_behaviors':
      $output = '<p>' . t('Provides a wide range of map "behaviors", pluggable map interactivities such as pop-ups, tooltips, and feature editing.') . '</p>';
      return $output;
  }
}