You are here

interface PermissionsHashGeneratorInterface in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Session/PermissionsHashGeneratorInterface.php \Drupal\Core\Session\PermissionsHashGeneratorInterface
  2. 9 core/lib/Drupal/Core/Session/PermissionsHashGeneratorInterface.php \Drupal\Core\Session\PermissionsHashGeneratorInterface

Defines the user permissions hash generator interface.

Hierarchy

Expanded class hierarchy of PermissionsHashGeneratorInterface

All classes that implement PermissionsHashGeneratorInterface

1 file declares its use of PermissionsHashGeneratorInterface
AccountPermissionsCacheContext.php in core/lib/Drupal/Core/Cache/Context/AccountPermissionsCacheContext.php

File

core/lib/Drupal/Core/Session/PermissionsHashGeneratorInterface.php, line 8

Namespace

Drupal\Core\Session
View source
interface PermissionsHashGeneratorInterface {

  /**
   * Generates a hash that uniquely identifies a user's permissions.
   *
   * @param \Drupal\Core\Session\AccountInterface $account
   *   The user account for which to get the permissions hash.
   *
   * @return string
   *   A permissions hash.
   */
  public function generate(AccountInterface $account);

}

Members