EntityAccessControlHandler::__construct

public EntityAccessControlHandler::__construct(EntityTypeInterface $entity_type)

Constructs an access control handler instance.

Parameters

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

File

core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php, line 53

Class

EntityAccessControlHandler
Defines a default implementation for entity access control handler.

Namespace

Drupal\Core\Entity

Code

public function __construct(EntityTypeInterface $entity_type) {
  $this->entityTypeId = $entity_type->id();
  $this->entityType = $entity_type;
}
doc_Drupal
2016-10-29 09:04:31
Comments
Leave a Comment

Please login to continue.