public function UserInterface::hasRole in Drupal 8
Same name and namespace in other branches
- 9 core/modules/user/src/UserInterface.php \Drupal\user\UserInterface::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.
1 method overrides UserInterface::hasRole()
- User::hasRole in core/
modules/ user/ src/ Entity/ User.php - Whether a user has a certain role.
File
- core/
modules/ user/ src/ UserInterface.php, line 62
Class
- UserInterface
- Provides an interface defining a user entity.
Namespace
Drupal\userCode
public function hasRole($rid);