You are here

PermissionsHashGeneratorInterface.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/lib/Drupal/Core/Session/PermissionsHashGeneratorInterface.php

File

core/lib/Drupal/Core/Session/PermissionsHashGeneratorInterface.php
View source
<?php

namespace Drupal\Core\Session;


/**
 * Defines the user permissions hash generator interface.
 */
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);

}

Interfaces

Namesort descending Description
PermissionsHashGeneratorInterface Defines the user permissions hash generator interface.