protected EntityAccessControlHandler::setCache($access, $cid, $operation, $langcode, AccountInterface $account)
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.
File
- core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php, line 201
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; }
Please login to continue.