function geolocation_field_widget_info in Geolocation Field 7
Implements hook_field_widget_info().
File
- ./
geolocation.module, line 242 - A geolocation field using the Field API.
Code
function geolocation_field_widget_info() {
return array(
'geolocation_text' => array(
'label' => t('Latitude/Longitude'),
'field types' => array(
'geolocation_latlng',
),
),
);
}