ContentEntityStorageBase::__construct

public ContentEntityStorageBase::__construct(EntityTypeInterface $entity_type, EntityManagerInterface $entity_manager, CacheBackendInterface $cache)

Constructs a ContentEntityStorageBase object.

Parameters

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

\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager.

\Drupal\Core\Cache\CacheBackendInterface $cache: The cache backend to be used.

Overrides EntityStorageBase::__construct

File

core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php, line 47

Class

ContentEntityStorageBase
Base class for content entity storage handlers.

Namespace

Drupal\Core\Entity

Code

1
2
3
4
5
6
public function __construct(EntityTypeInterface $entity_type, EntityManagerInterface $entity_manager, CacheBackendInterface $cache) {
  parent::__construct($entity_type);
  $this->bundleKey = $this->entityType->getKey('bundle');
  $this->entityManager = $entity_manager;
  $this->cacheBackend = $cache;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.