You are here

protected function ImageReplaceTestBase::createImageField in Image Replace 7

Same name and namespace in other branches
  1. 8 src/Tests/ImageReplaceTestBase.php \Drupal\image_replace\Tests\ImageReplaceTestBase::createImageField()

Create a new image field.

Parameters

string $name: The name of the new field (all lowercase), exclude the "field_" prefix.

string $type_name: The node type that this field will be added to.

array $field_settings: A list of field settings that will be added to the defaults.

array $instance_settings: A list of instance settings that will be added to the instance defaults.

array $widget_settings: A list of widget settings that will be added to the widget defaults.

2 calls to ImageReplaceTestBase::createImageField()
AdminTest::setUp in src/Tests/AdminTest.php
EntityTest::setUp in src/Tests/EntityTest.php

File

src/Tests/ImageReplaceTestBase.php, line 24

Class

ImageReplaceTestBase
Tests functionality of the replace image effect.

Namespace

Drupal\image_replace\Tests

Code

protected function createImageField($name, $type_name, array $field_settings = array(), array $instance_settings = array(), array $widget_settings = array()) {
  $field = array(
    'field_name' => $name,
    'type' => 'image',
    'settings' => array(),
    'cardinality' => !empty($field_settings['cardinality']) ? $field_settings['cardinality'] : 1,
  );
  $field['settings'] = array_merge($field['settings'], $field_settings);
  field_create_field($field);
  $instance = array(
    'field_name' => $field['field_name'],
    'entity_type' => 'node',
    'label' => $name,
    'bundle' => $type_name,
    'required' => !empty($instance_settings['required']),
    'settings' => array(
      'default_image' => NULL,
    ),
    'widget' => array(
      'type' => 'image_image',
      'settings' => array(),
    ),
  );
  $instance['settings'] = array_merge($instance['settings'], $instance_settings);
  $instance['widget']['settings'] = array_merge($instance['widget']['settings'], $widget_settings);
  return field_create_instance($instance);
}