showroom.features.field_base.inc 714 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * @file
  4. * showroom.features.field_base.inc
  5. */
  6. /**
  7. * Implements hook_field_default_field_bases().
  8. */
  9. function showroom_field_default_field_bases() {
  10. $field_bases = array();
  11. // Exported field_base: 'description_field'.
  12. $field_bases['description_field'] = array(
  13. 'active' => 1,
  14. 'cardinality' => 1,
  15. 'deleted' => 0,
  16. 'entity_types' => array(),
  17. 'field_name' => 'description_field',
  18. 'indexes' => array(
  19. 'format' => array(
  20. 0 => 'format',
  21. ),
  22. ),
  23. 'locked' => 0,
  24. 'module' => 'text',
  25. 'settings' => array(
  26. 'entity_translation_sync' => FALSE,
  27. ),
  28. 'translatable' => 1,
  29. 'type' => 'text_with_summary',
  30. );
  31. return $field_bases;
  32. }