function getlocations_leaflet_field_widget_info in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_leaflet/getlocations_leaflet.module \getlocations_leaflet_field_widget_info()
Implements hook_field_widget_info(). Expose Field API widget types.
Return value
An array describing the widget types implemented by the module.
File
- modules/
getlocations_leaflet/ getlocations_leaflet.module, line 1057 - getlocations_leaflet.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_leaflet_field_widget_info() {
$info = array(
'getlocations_leaflet_map' => array(
'label' => t('Getlocations Leaflet Map Field'),
'field types' => array(
'getlocations_leaflet',
),
'settings' => array(),
),
);
return $info;
}