You are here

public function EntityAccessChecker::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/src/Access/EntityAccessChecker.php \Drupal\jsonapi\Access\EntityAccessChecker::__construct()

EntityAccessChecker constructor.

Parameters

\Drupal\jsonapi\ResourceType\ResourceTypeRepositoryInterface $resource_type_repository: The JSON:API resource type repository.

\Symfony\Component\Routing\RouterInterface $router: The router.

\Drupal\Core\Session\AccountInterface $account: The current user.

\Drupal\Core\Entity\EntityRepositoryInterface $entity_repository: The entity repository.

File

core/modules/jsonapi/src/Access/EntityAccessChecker.php, line 108

Class

EntityAccessChecker
Checks access to entities.

Namespace

Drupal\jsonapi\Access

Code

public function __construct(ResourceTypeRepositoryInterface $resource_type_repository, RouterInterface $router, AccountInterface $account, EntityRepositoryInterface $entity_repository) {
  $this->resourceTypeRepository = $resource_type_repository;
  $this->router = $router;
  $this->currentUser = $account;
  $this->entityRepository = $entity_repository;
}