123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- /**
- * @file
- * showroom.features.field_base.inc
- */
- /**
- * Implements hook_field_default_field_bases().
- */
- function showroom_field_default_field_bases() {
- $field_bases = array();
- // Exported field_base: 'field_location'.
- $field_bases['field_location'] = array(
- 'active' => 1,
- 'cardinality' => -1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_location',
- 'field_permissions' => array(
- 'type' => 2,
- ),
- 'indexes' => array(
- 'location' => array(
- 0 => 'location',
- ),
- ),
- 'locked' => 0,
- 'module' => 'materio_showroom',
- 'settings' => array(
- 'entity_translation_sync' => FALSE,
- 'profile2_private' => FALSE,
- ),
- 'translatable' => 0,
- 'type' => 'field_materio_showroom_location',
- );
- // Exported field_base: 'field_showroom'.
- $field_bases['field_showroom'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_showroom',
- 'field_permissions' => array(
- 'type' => 2,
- ),
- 'indexes' => array(
- 'tid' => array(
- 0 => 'tid',
- ),
- ),
- 'locked' => 0,
- 'module' => 'taxonomy',
- 'settings' => array(
- 'allowed_values' => array(
- 0 => array(
- 'vocabulary' => 'showroom',
- 'parent' => 0,
- 'depth' => '',
- ),
- ),
- 'entity_translation_sync' => FALSE,
- 'options_list_callback' => 'content_taxonomy_allowed_values',
- 'profile2_private' => FALSE,
- ),
- 'translatable' => 0,
- 'type' => 'taxonomy_term_reference',
- );
- // Exported field_base: 'field_tode_showroom'.
- $field_bases['field_tode_showroom'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_tode_showroom',
- 'field_permissions' => array(
- 'type' => 2,
- ),
- 'indexes' => array(
- 'tid' => array(
- 0 => 'tid',
- ),
- ),
- 'locked' => 0,
- 'module' => 'taxonomy',
- 'settings' => array(
- 'allowed_values' => array(
- 0 => array(
- 'vocabulary' => 'showroom',
- 'parent' => 0,
- 'depth' => '',
- ),
- ),
- 'entity_translation_sync' => FALSE,
- 'options_list_callback' => 'content_taxonomy_allowed_values',
- 'profile2_private' => FALSE,
- ),
- 'translatable' => 0,
- 'type' => 'taxonomy_term_reference',
- );
- return $field_bases;
- }
|