function geolocation_widget_info in Geolocation Field 6
Implementation of hook_widget_info().
Here we indicate that the content module will handle the default value and multiple values for these widgets.
File
- ./
geolocation.module, line 264
Code
function geolocation_widget_info() {
return array(
'geolocation_text' => array(
'label' => t('Latitude/Longitude'),
'field types' => array(
'geolocation_latlng',
),
),
);
}