public Role::grantPermission($permission)
Grant permissions to the role.
Parameters
string $permission: The permission to grant.
Return value
$this
Overrides RoleInterface::grantPermission
File
- core/modules/user/src/Entity/Role.php, line 122
Class
- Role
- Defines the user role entity class.
Namespace
Drupal\user\Entity
Code
public function grantPermission($permission) {
if ($this->isAdmin()) {
return $this;
}
if (!$this->hasPermission($permission)) {
$this->permissions[] = $permission;
}
return $this;
}
Please login to continue.