function gmap_cck_field_info in GMap Addons 7
Same name and namespace in other branches
- 5 gmap_cck.module \gmap_cck_field_info()
- 6 gmap_cck.module \gmap_cck_field_info()
Declare information about a field type.
Return value
An array keyed by field type name. Each element of the array is an associative array with these keys and values:
- "label": The human-readable label for the field type.
File
- ./
gmap_cck.module, line 22 - display of a google map as cck field
Code
function gmap_cck_field_info() {
return array(
'gmap_cck' => array(
'label' => 'Google map view',
),
);
}