You are here

protected function EntityAccessControlHandler::setCache in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php \Drupal\Core\Entity\EntityAccessControlHandler::setCache()

Statically caches whether the given user has access.

Parameters

\Drupal\Core\Access\AccessResultInterface $access: The access result.

string $cid: Unique string identifier for the entity/operation, for example the entity UUID or a custom string.

string $operation: The entity operation. Usually one of 'view', 'update', 'create' or 'delete'.

string $langcode: The language code for which to check access.

\Drupal\Core\Session\AccountInterface $account: The user for which to check access.

Return value

\Drupal\Core\Access\AccessResultInterface Whether the user has access, plus cacheability metadata.

2 calls to EntityAccessControlHandler::setCache()
EntityAccessControlHandler::access in core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php
Checks access to an operation on a given entity or entity translation.
EntityAccessControlHandler::createAccess in core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php
Checks access to create an entity.

File

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

Class

EntityAccessControlHandler
Defines a default implementation for entity access control handler.

Namespace

Drupal\Core\Entity

Code

protected function setCache($access, $cid, $operation, $langcode, AccountInterface $account) {

  // Save the given value in the static cache and directly return it.
  return $this->accessCache[$account
    ->id()][$cid][$langcode][$operation] = $access;
}