function openlayers_presets_ui_help in Openlayers 6
Implementation of hook_help().
File
- modules/
openlayers_presets_ui/ openlayers_presets_ui.module, line 16 - Main OpenLayers Preset UI Hook Implemntations
Code
function openlayers_presets_ui_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#openlayers_presets_ui':
$output = '<p>' . t('The OpenLayers Preset UI module provides a User Interface to create map presets.') . '</p>';
return $output;
}
}