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/UserSession.php, line 115

Class

UserSession

Namespace

Drupal\Core\Session

Code

public function hasRole(string $rid) : bool {
  return in_array($rid, $this
    ->getRoles(), TRUE);
}