public function TokenAuthUser::hasRole in Simple OAuth (OAuth2) & OpenID Connect 8
Same name and namespace in other branches
- 8.4 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()
- 5.x 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 675
Class
- TokenAuthUser
- Class TokenAuthUser.
Namespace
Drupal\simple_oauth\AuthenticationCode
public function hasRole($rid) {
return $this->subject
->hasRole($rid);
}