materio_publications.features.field_base.inc 901 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * @file
  4. * materio_publications.features.field_base.inc
  5. */
  6. /**
  7. * Implements hook_field_default_field_bases().
  8. */
  9. function materio_publications_field_default_field_bases() {
  10. $field_bases = array();
  11. // Exported field_base: 'field_couverture'
  12. $field_bases['field_couverture'] = array(
  13. 'active' => 1,
  14. 'cardinality' => 1,
  15. 'deleted' => 0,
  16. 'entity_types' => array(),
  17. 'field_name' => 'field_couverture',
  18. 'field_permissions' => array(
  19. 'type' => 0,
  20. ),
  21. 'indexes' => array(
  22. 'fid' => array(
  23. 0 => 'fid',
  24. ),
  25. ),
  26. 'locked' => 0,
  27. 'module' => 'image',
  28. 'settings' => array(
  29. 'default_image' => 0,
  30. 'entity_translation_sync' => array(
  31. 0 => 'fid',
  32. ),
  33. 'profile2_private' => FALSE,
  34. 'uri_scheme' => 'public',
  35. ),
  36. 'translatable' => 0,
  37. 'type' => 'image',
  38. );
  39. return $field_bases;
  40. }