You are here

function location_entity_field_info_alter in Location 7.3

Implements hook_field_info_alter().

File

contrib/location_entity/location_entity.module, line 11
Location Entity module.

Code

function location_entity_field_info_alter(&$field_info) {

  // Location field type is defined in the location_cck module.
  if (isset($field_info['location'])) {
    $field_info['location']['property_type'] = 'field_item_location';
    $field_info['location']['property_callbacks'][] = 'location_entity_field_item_location_property_callback';
  }
}