function 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 203
Class
- User
- Defines the user entity class.
Namespace
Drupal\user\EntityCode
public function removeRole($rid) {
$this->set('roles', array_diff($this->getRoles(TRUE), [
$rid,
]));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.