function getlocations_map_field_info in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_map/getlocations_map.module \getlocations_map_field_info()
Implements hook_field_info(). Define Field API field types.
Return value
An array whose keys are field type names and whose values are arrays describing the field type.
1 call to getlocations_map_field_info()
- getlocations_map_field_settings_form in modules/
getlocations_map/ getlocations_map.module - Implements hook_field_settings_form(). Add settings to a field settings form.
File
- modules/
getlocations_map/ getlocations_map.module, line 35 - getlocations_map.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_map_field_info() {
$info = array(
'getlocations_map' => array(
'label' => t('Getlocations Map'),
'description' => t('Provide Getlocations Map.'),
'default_formatter' => 'getlocations_map_default',
'default_widget' => 'getlocations_map',
'settings' => array(
'input_text' => 0,
),
),
);
return $info;
}