You are here

function commons_location_field_default_field_bases in Drupal Commons 7.3

Implements hook_field_default_field_bases().

File

modules/commons/commons_location/commons_location.features.field_base.inc, line 10
commons_location.features.field_base.inc

Code

function commons_location_field_default_field_bases() {
  $field_bases = array();

  // Exported field_base: 'field_address'
  $field_bases['field_address'] = array(
    'active' => 1,
    'cardinality' => 1,
    'deleted' => 0,
    'entity_types' => array(),
    'field_name' => 'field_address',
    'indexes' => array(),
    'locked' => 0,
    'module' => 'addressfield',
    'settings' => array(),
    'translatable' => 0,
    'type' => 'addressfield',
  );
  return $field_bases;
}