function getlocations_map_field_widget_info in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_map/getlocations_map.module \getlocations_map_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_map/ getlocations_map.module, line 614 - getlocations_map.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_map_field_widget_info() {
$info = array(
'getlocations_map_default' => array(
'label' => t('Getlocations Map Field'),
'field types' => array(
'getlocations_map',
),
'settings' => array(),
),
);
return $info;
}