gmap_cck_field_info()
gmap_addons/gmap_cck.module, line 22
Declare information about a field type.
An array keyed by field type 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_info() {
return array(
'gmap_cck' => array('label' => 'Google map view'),
);
}
?>