PermissionCheckerInterface.php

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

Namespace

Drupal\Core\Session

File

core/lib/Drupal/Core/Session/PermissionCheckerInterface.php

View source
<?php

namespace Drupal\Core\Session;


/**
 * Defines a permission checker interface.
 *
 * This service checks if a role has a permission. It can be swapped out or
 * decorated to allow for more complex logic. If you do so, ensure that you
 * provide ample automated tests so your site remains secure.
 *
 * @ingroup user_api
 */
interface PermissionCheckerInterface {
    
    /**
     * Checks whether an account has a permission.
     *
     * @param string $permission
     *   The name of the permission to check for.
     * @param \Drupal\Core\Session\AccountInterface $account
     *   The user account for which to check the permissions.
     *
     * @return bool
     *   Whether the account has the permission.
     */
    public function hasPermission(string $permission, AccountInterface $account) : bool;

}

Interfaces

Title Deprecated Summary
PermissionCheckerInterface Defines a permission checker interface.

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