public function AccountPermissionsCacheContext::__construct

public AccountPermissionsCacheContext::__construct(AccountInterface $user, PermissionsHashGeneratorInterface $permissions_hash_generator)

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 31

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;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Cache!Context!AccountPermissionsCacheContext.php/function/AccountPermissionsCacheContext::__construct/8.1.x