gmap_cck_field_formatter_info()
gmap_addons/gmap_cck.module, line 231
Declare information about a formatter.
An array keyed by formatter name. Each element of the array is an associative array with these keys and values:
| Name | Description |
|---|---|
| Hooks | Allow modules to interact with the Drupal core. |
<?php
function gmap_cck_field_formatter_info() {
return array(
'default' => array(
'label' => t('Default map'),
'field types' => array('gmap_cck'),
),
// TODO: add list of configurable small map-displays
);
}
?>