public function User::hasRole in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::hasRole()
Whether a user has a certain role.
Parameters
string $rid: The role ID to check.
Return value
bool Returns TRUE if the user has the role, otherwise FALSE.
Overrides UserInterface::hasRole
File
- core/
modules/ user/ src/ Entity/ User.php, line 182
Class
- User
- Defines the user entity class.
Namespace
Drupal\user\EntityCode
public function hasRole($rid) {
return in_array($rid, $this
->getRoles());
}