function Role::grantPermissions

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

File

core/modules/user/src/Entity/Role.php, line 144

Class

Role
Defines the user role entity class.

Namespace

Drupal\user\Entity

Code

public function grantPermissions(array $permissions) : static {
  if ($this->isAdmin()) {
    return $this;
  }
  // Remove existing permissions.
  $permissions = array_diff($permissions, $this->permissions);
  $this->permissions = array_merge($this->permissions, $permissions);
  return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.