openlayers_views_help

openlayers/modules/openlayers_views/openlayers_views.module, line 19

Versions
6
openlayers_views_help($path, $arg)

Implementation of hook_help

Code

<?php
function openlayers_views_help($path, $arg) {
  switch ($path) {
    case 'admin/help#openlayers_views':
      $output = '<p>'. t('The OpenLayers Views module provides a set of plugins for Views.') .'</p>';
  }
  
  return $output;
}
?>