Same name and namespace in other branches
  1. 8.9.x core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::revokePermission()
  2. 9 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\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 142

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