You are here

function paragraphs_test_field_default_field_instances in Paragraphs 7

Implements hook_field_default_field_instances().

File

tests/paragraphs_test/paragraphs_test.features.field_instance.inc, line 11
paragraphs_test.features.field_instance.inc

Code

function paragraphs_test_field_default_field_instances() {
  $field_instances = array();

  // Exported field_instance: 'node-paragraph_test-field_paragraphs'.
  $field_instances['node-paragraph_test-field_paragraphs'] = array(
    'bundle' => 'paragraph_test',
    'default_value' => NULL,
    'deleted' => 0,
    'description' => '',
    'display' => array(
      'default' => array(
        'label' => 'above',
        'module' => 'paragraphs',
        'settings' => array(
          'view_mode' => 'full',
        ),
        'type' => 'paragraphs_view',
        'weight' => 0,
      ),
      'teaser' => array(
        'label' => 'above',
        'settings' => array(),
        'type' => 'hidden',
        'weight' => 0,
      ),
    ),
    'entity_type' => 'node',
    'field_name' => 'field_paragraphs',
    'label' => 'Paragraphs',
    'required' => 0,
    'settings' => array(
      'add_mode' => 'select',
      'allowed_bundles' => array(
        'ptest' => 'ptest',
      ),
      'bundle_weights' => array(
        'ptest' => 2,
      ),
      'default_edit_mode' => 'preview',
      'title' => 'Paragraph',
      'title_multiple' => 'Paragraphs',
      'user_register_form' => FALSE,
    ),
    'widget' => array(
      'active' => 0,
      'module' => 'paragraphs',
      'settings' => array(),
      'type' => 'paragraphs_embed',
      'weight' => -4,
    ),
  );

  // Exported field_instance: 'paragraphs_item-ptest-field_ptest_text'.
  $field_instances['paragraphs_item-ptest-field_ptest_text'] = array(
    'bundle' => 'ptest',
    'default_value' => NULL,
    'deleted' => 0,
    'description' => '',
    'display' => array(
      'default' => array(
        'label' => 'hidden',
        'module' => 'text',
        'settings' => array(),
        'type' => 'text_default',
        'weight' => 0,
      ),
      'paragraphs_editor_preview' => array(
        'label' => 'above',
        'settings' => array(),
        'type' => 'hidden',
        'weight' => 0,
      ),
    ),
    'entity_type' => 'paragraphs_item',
    'field_name' => 'field_ptest_text',
    'label' => 'PTest Text',
    'required' => 1,
    'settings' => array(
      'text_processing' => 0,
      'user_register_form' => FALSE,
    ),
    'widget' => array(
      'active' => 1,
      'module' => 'text',
      'settings' => array(
        'size' => 60,
      ),
      'type' => 'text_textfield',
      'weight' => 1,
    ),
  );

  // Translatables
  // Included for use with string extractors like potx.
  t('PTest Text');
  t('Paragraphs');
  return $field_instances;
}