You are here

public function EntityViewDisplay::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Entity/EntityViewDisplay.php \Drupal\Core\Entity\Entity\EntityViewDisplay::__construct()
  2. 9 core/lib/Drupal/Core/Entity/Entity/EntityViewDisplay.php \Drupal\Core\Entity\Entity\EntityViewDisplay::__construct()

Constructs an Entity object.

Parameters

array $values: An array of values to set, keyed by property name. If the entity type has bundles, the bundle key has to be specified.

string $entity_type: The type of the entity to create.

Overrides EntityDisplayBase::__construct

1 call to EntityViewDisplay::__construct()
LayoutBuilderEntityViewDisplay::__construct in core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php
Constructs an Entity object.
1 method overrides EntityViewDisplay::__construct()
LayoutBuilderEntityViewDisplay::__construct in core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php
Constructs an Entity object.

File

core/lib/Drupal/Core/Entity/Entity/EntityViewDisplay.php, line 173

Class

EntityViewDisplay
Configuration entity that contains display options for all components of a rendered entity in a given view mode.

Namespace

Drupal\Core\Entity\Entity

Code

public function __construct(array $values, $entity_type) {
  $this->pluginManager = \Drupal::service('plugin.manager.field.formatter');
  parent::__construct($values, $entity_type);
}