groups/modules/commons/commons_location/commons_location.features.field_base.inc
Marton Kiss 8ac59801be Refactor commons build process
Update commons modules to release 7.12, and move the codebase under
modules/commons instead of constant fetching from remote repository.
The commons.make file removed so it is not required to rebuild
groups distribution.

Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
2014-05-28 15:58:33 +02:00

31 lines
642 B
PHP

<?php
/**
* @file
* commons_location.features.field_base.inc
*/
/**
* Implements hook_field_default_field_bases().
*/
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',
'foreign keys' => array(),
'indexes' => array(),
'locked' => 0,
'module' => 'addressfield',
'settings' => array(),
'translatable' => 0,
'type' => 'addressfield',
);
return $field_bases;
}