User::removeRole

public User::removeRole($rid)

Remove a role from a user.

Parameters

string $rid: The role ID to remove.

Overrides UserInterface::removeRole

File

core/modules/user/src/Entity/User.php, line 188

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function removeRole($rid) {
  $this->set('roles', array_diff($this->getRoles(TRUE), array($rid)));
}
doc_Drupal
2016-10-29 09:52:09
Comments
Leave a Comment

Please login to continue.