function openlayers_views_help in Openlayers 6
Same name and namespace in other branches
- 6.2 modules/openlayers_views/openlayers_views.module \openlayers_views_help()
- 7.2 modules/openlayers_views/openlayers_views.module \openlayers_views_help()
Implementation of hook_help().
File
- modules/
openlayers_views/ openlayers_views.module, line 19 - This file holds the main Drupal hook functions and private functions for the openlayers_views module.
Code
function openlayers_views_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#openlayers_views':
$output = '<p>' . t('The OpenLayers Views module provides a set of plugins for Views.') . '</p>';
return $output;
}
}