You are here

public function EntityFormDisplay::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Entity/EntityFormDisplay.php \Drupal\Core\Entity\Entity\EntityFormDisplay::__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

File

core/lib/Drupal/Core/Entity/Entity/EntityFormDisplay.php, line 136

Class

EntityFormDisplay
Configuration entity that contains widget options for all components of an entity form in a given form mode.

Namespace

Drupal\Core\Entity\Entity

Code

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