public function Entity::__construct

Same name in this branch
  1. 8.x drupal/core/lib/Drupal/Core/Entity/Entity.php \Drupal\Core\Entity\Entity::__construct()
  2. 8.x drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Fixtures/Entity.php \Symfony\Component\Validator\Tests\Fixtures\Entity::__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.

1 call to Entity::__construct()
ConfigEntityBase::__construct in drupal/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Overrides Entity::__construct().
2 methods override Entity::__construct()
ConfigEntityBase::__construct in drupal/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Overrides Entity::__construct().
EntityNG::__construct in drupal/core/lib/Drupal/Core/Entity/EntityNG.php
Overrides Entity::__construct().

File

drupal/core/lib/Drupal/Core/Entity/Entity.php, line 71
Contains \Drupal\Core\Entity\Entity.

Class

Entity
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public function __construct(array $values, $entity_type) {
  $this->entityType = $entity_type;

  // Set initial values.
  foreach ($values as $key => $value) {
    $this->{$key} = $value;
  }
}