class AlwaysAddsAccessPolicy

Hierarchy

Expanded class hierarchy of AlwaysAddsAccessPolicy

File

core/tests/Drupal/Tests/Core/Session/AccessPolicyProcessorTest.php, line 503

Namespace

Drupal\Tests\Core\Session
View source
class AlwaysAddsAccessPolicy extends AccessPolicyBase {
  public function applies(string $scope) : bool {
    return TRUE;
  }
  public function calculatePermissions(AccountInterface $account, string $scope) : RefinableCalculatedPermissionsInterface {
    $calculated_permissions = parent::calculatePermissions($account, $scope);
    return $calculated_permissions->addItem(new CalculatedPermissionsItem([
      'always',
    ], FALSE, 'always', 1));
  }
  public function getPersistentCacheContexts() : array {
    return [
      'always',
    ];
  }

}

Members


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.