You are here

protected function FotoramaGalleryImageFieldCreationTrait::createImageField in Fotorama Gallery 8.2

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 $storage_settings: (optional) A list of field storage settings that will be added to the defaults.

array $field_settings: (optional) A list of instance settings that will be added to the instance defaults.

array $widget_settings: (optional) Widget settings to be added to the widget defaults.

array $formatter_settings: (optional) Formatter settings to be added to the formatter defaults.

string $description: (optional) A description for the field.

Return value

\Drupal\Core\Entity\EntityInterface|static A new entity object.

Throws

\Drupal\Core\Entity\EntityStorageException

1 call to FotoramaGalleryImageFieldCreationTrait::createImageField()
FotoramaGalleryTest::testFotoramaGalleryFormatterImageField in tests/src/FunctionalJavascript/FotoramaGalleryTest.php
Tests enabling a resource and accessing it.

File

tests/src/FunctionalJavascript/FotoramaGalleryImageFieldCreationTrait.php, line 38

Class

FotoramaGalleryImageFieldCreationTrait
Provides a helper method for creating Image fields.

Namespace

Drupal\Tests\fotorama_gallery\FunctionalJavascript

Code

protected function createImageField($name, $type_name, array $storage_settings = [], array $field_settings = [], array $widget_settings = [], array $formatter_settings = [], $description = '') {
  FieldStorageConfig::create([
    'field_name' => $name,
    'entity_type' => 'node',
    'type' => 'image',
    'settings' => $storage_settings,
    'cardinality' => !empty($storage_settings['cardinality']) ? $storage_settings['cardinality'] : 1,
  ])
    ->save();
  $field_config = FieldConfig::create([
    'field_name' => $name,
    'label' => $name,
    'entity_type' => 'node',
    'bundle' => $type_name,
    'required' => !empty($field_settings['required']),
    'settings' => $field_settings,
    'description' => $description,
  ]);
  $field_config
    ->save();
  $entity_type = 'node';
  $view_mode = 'default';
  \Drupal::entityTypeManager()
    ->getStorage('entity_form_display')
    ->load($entity_type . '.' . $type_name . '.' . $view_mode)
    ->setComponent($name, [
    'type' => 'image_image',
    'settings' => $widget_settings,
  ])
    ->save();
  \Drupal::entityTypeManager()
    ->getStorage('entity_view_display')
    ->load($entity_type . '.' . $type_name . '.' . $view_mode)
    ->setComponent($name, [
    'type' => 'fotorama_gallery',
    'settings' => $formatter_settings,
  ])
    ->save();
  return $field_config;
}