function AccountProxy::hasRole

Same name and namespace in other branches
  1. 10 core/lib/Drupal/Core/Session/AccountProxy.php \Drupal\Core\Session\AccountProxy::hasRole()

Whether a user has a certain role.

@todo in Drupal 11, add method to Drupal\Core\Session\AccountInterface.

Parameters

string $rid: The role ID to check.

Return value

bool Returns TRUE if the user has the role, otherwise FALSE.

See also

https://www.drupal.org/node/3228209

File

core/lib/Drupal/Core/Session/AccountProxy.php, line 113

Class

AccountProxy
A proxied implementation of AccountInterface.

Namespace

Drupal\Core\Session

Code

public function hasRole(string $rid) : bool {
    return $this->getAccount()
        ->hasRole($rid);
}

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