12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * @file
- * materio_publications.features.field_base.inc
- */
- /**
- * Implements hook_field_default_field_bases().
- */
- function materio_publications_field_default_field_bases() {
- $field_bases = array();
- // Exported field_base: 'field_couverture'
- $field_bases['field_couverture'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_couverture',
- 'field_permissions' => array(
- 'type' => 0,
- ),
- 'indexes' => array(
- 'fid' => array(
- 0 => 'fid',
- ),
- ),
- 'locked' => 0,
- 'module' => 'image',
- 'settings' => array(
- 'default_image' => 0,
- 'entity_translation_sync' => array(
- 0 => 'fid',
- ),
- 'profile2_private' => FALSE,
- 'uri_scheme' => 'public',
- ),
- 'translatable' => 0,
- 'type' => 'image',
- );
- return $field_bases;
- }
|