public function TokenAuthUser::hasRole in Simple OAuth (OAuth2) & OpenID Connect 5.x
Same name and namespace in other branches
- 8.4 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::hasRole()
- 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::hasRole()
- 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::hasRole()
- 8.3 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::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
- src/
Authentication/ TokenAuthUser.php, line 722
Class
- TokenAuthUser
- The decorated user class with token information.
Namespace
Drupal\simple_oauth\AuthenticationCode
public function hasRole($rid) {
return in_array($rid, $this
->getRoles());
}