function getlocations_fields_field_info in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_fields/getlocations_fields.module \getlocations_fields_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_fields_field_info()
- getlocations_fields_field_settings_form in modules/
getlocations_fields/ getlocations_fields.module - Implements hook_field_settings_form(). Add settings to a field settings form.
File
- modules/
getlocations_fields/ getlocations_fields.module, line 108 - getlocations_fields.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_fields_field_info() {
$info = getlocations_fields_field_info_defaults();
return $info;
}