You are here

function getdirections_fields_key_map in Get Directions 7.3

1 call to getdirections_fields_key_map()
getdirections_fields_property_callback in modules/getdirections_fields/getdirections_fields.module
Property callback for getdirections fields.

File

modules/getdirections_fields/getdirections_fields.module, line 811
Provides Field module integration for Getdirections

Code

function getdirections_fields_key_map() {
  $keys = array(
    'locative_field_name' => array(
      'type' => 'text',
      'label' => t('Name'),
      'description' => t('The locative field name'),
    ),
    'address_field_name' => array(
      'type' => 'text',
      'label' => t('Name'),
      'description' => t('The address field name'),
    ),
  );
  return $keys;
}