function Role::revokePermission

Revokes a permissions from the user role.

Parameters

string $permission: The permission to revoke.

Return value

$this

Overrides RoleInterface::revokePermission

File

core/modules/user/src/Entity/Role.php, line 145

Class

Role
Defines the user role entity class.

Namespace

Drupal\user\Entity

Code

public function revokePermission($permission) {
  if ($this->isAdmin()) {
    return $this;
  }
  $this->permissions = array_diff($this->permissions, [
    $permission,
  ]);
  return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.