8ac59801be
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
31 lines
642 B
PHP
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;
|
|
}
|