You are here

public function Role::revokePermission in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 140
Contains \Drupal\user\Entity\Role.

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, array(
    $permission,
  ));
  return $this;
}