openlayers_cck_widget_info

openlayers/modules/openlayers_cck/openlayers_cck.module, line 57

Versions
6
openlayers_cck_widget_info()

Implementation of hook_widget_info

Code

<?php
function openlayers_cck_widget_info() {
  $info = array();
  
  // Check for geo_field module
  if (module_exists('geo_field')) {
    $info['openlayers_cck_geo_field'] = array(
      'label' => t('OpenLayers Map Widget'),
      'field types' => array('geo'),
    );
  }
  
  return $info;
}
?>