public Role::revokePermission($permission)
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 135
Class
- Role
- Defines the user role entity class.
Namespace
Drupal\user\Entity
Code
1 2 3 4 5 6 7 | public function revokePermission( $permission ) { if ( $this ->isAdmin()) { return $this ; } $this ->permissions = array_diff ( $this ->permissions, array ( $permission )); return $this ; } |
Please login to continue.