You are here

public function AccountPermissionsCacheContext::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Cache/Context/AccountPermissionsCacheContext.php \Drupal\Core\Cache\Context\AccountPermissionsCacheContext::__construct()

Constructs a new UserCacheContext service.

Parameters

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

\Drupal\Core\Session\PermissionsHashGeneratorInterface $permissions_hash_generator: The permissions hash generator.

Overrides UserCacheContextBase::__construct

File

core/lib/Drupal/Core/Cache/Context/AccountPermissionsCacheContext.php, line 36
Contains \Drupal\Core\Cache\Context\AccountPermissionsCacheContext.

Class

AccountPermissionsCacheContext
Defines the AccountPermissionsCacheContext service, for "per permission" caching.

Namespace

Drupal\Core\Cache\Context

Code

public function __construct(AccountInterface $user, PermissionsHashGeneratorInterface $permissions_hash_generator) {
  $this->user = $user;
  $this->permissionsHashGenerator = $permissions_hash_generator;
}