public Entity::__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.
File
- core/lib/Drupal/Core/Entity/Entity.php, line 58
Class
- Entity
- Defines a base entity class.
Namespace
Drupal\Core\Entity
Code
public function __construct(array $values, $entity_type) { $this->entityTypeId = $entity_type; // Set initial values. foreach ($values as $key => $value) { $this->$key = $value; } }
Please login to continue.