User::hasRole

public User::hasRole($rid)

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 167

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function hasRole($rid) {
  return in_array($rid, $this->getRoles());
}
doc_Drupal
2016-10-29 09:52:08
Comments
Leave a Comment

Please login to continue.