openlayers/openlayers.module, line 33
- Versions
- 6
openlayers_help($path, $arg)
Implementation of hook_help
Code
<?php
function openlayers_help($path, $arg) {
switch ($path) {
case 'admin/help#openlayers':
$output = '<p>'. t('The OpenLayers module is the base module for the OpenLayer suite of modules, and provides the main API.') .'</p>';
}
return $output;
}
?> 