function openlayers_cck_help in Openlayers 6
Same name and namespace in other branches
- 6.2 modules/openlayers_cck/openlayers_cck.module \openlayers_cck_help()
Implementation of hook_help().
File
- modules/
openlayers_cck/ openlayers_cck.module, line 25 - This file holds the main Drupal hook functions and private functions for the openlayers_cck module.
Code
function openlayers_cck_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#openlayers_cck':
$output = '<p>' . t('The openlayers_cck module provides fields and widgets that interface with OpenLayers.') . '</p>';
return $output;
}
}