You are here

public function User::removeRole in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::removeRole()

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 193
Contains \Drupal\user\Entity\User.

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,
  )));
}