function getlocations_mapquest_field_info in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_mapquest/getlocations_mapquest.module \getlocations_mapquest_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_mapquest_field_info()
- getlocations_mapquest_field_settings_form in modules/
getlocations_mapquest/ getlocations_mapquest.module - Implements hook_field_settings_form(). Add settings to a field settings form.
File
- modules/
getlocations_mapquest/ getlocations_mapquest.module, line 122 - getlocations_mapquest.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_mapquest_field_info() {
$info = array(
'getlocations_mapquest' => array(
'label' => t('Getlocations Mapquest Map'),
'description' => t('Provide Getlocations Mapquest Map.'),
'default_formatter' => 'getlocations_mapquest_map',
'default_widget' => 'getlocations_mapquest_map',
'settings' => array(
'input_text' => 0,
),
),
);
return $info;
}