openlayers/modules/openlayers_cck/openlayers_cck.module, line 19
- Versions
- 6
openlayers_cck_help($path, $arg)
Implementation of hook_help
Code
<?php
function openlayers_cck_help($path, $arg) {
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;
}
?> 