public function EntityViewDisplay::__construct

public EntityViewDisplay::__construct(array $values, $entity_type)

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/EntityViewDisplay.php, line 169

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);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!Entity!EntityViewDisplay.php/function/EntityViewDisplay::__construct/8.1.x