You are here

public function Role::grantPermission in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::grantPermission()

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 129

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