W3cubDocs

/Drupal 8

public function EntityStorageBase::__construct

public EntityStorageBase::__construct(EntityTypeInterface $entity_type)

Constructs an EntityStorageBase instance.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

File

core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 81

Class

EntityStorageBase
A base entity storage class.

Namespace

Drupal\Core\Entity

Code

public function __construct(EntityTypeInterface $entity_type) {
  $this->entityTypeId = $entity_type->id();
  $this->entityType = $entity_type;
  $this->idKey = $this->entityType->getKey('id');
  $this->uuidKey = $this->entityType->getKey('uuid');
  $this->langcodeKey = $this->entityType->getKey('langcode');
  $this->entityClass = $this->entityType->getClass();
}

© 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!EntityStorageBase.php/function/EntityStorageBase::__construct/8.1.x