openlayers/modules/openlayers_cck/openlayers_cck.module, line 306
- Versions
- 6
openlayers_cck_field_formatter_info()
Implementation of hook_field_formatter_info(),.
Code
<?php
function openlayers_cck_field_formatter_info() {
return array(
// @@TOOD: Implement Grouped Formatter.
//'openlayersmapformatter_grouped' => array(
// 'label' => t('OpenLayers Grouped Map'),
// 'field types' => array('geo'),
// 'multiple values' => CONTENT_HANDLE_MODULE,
//),
'openlayersmapformatter_single' => array(
'label' => t('OpenLayers Single Map'),
'field types' => array('geo'),
'multiple values' => CONTENT_HANDLE_MODULE,
),
);
}
?> 