Role::grantPermission

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;
}
doc_Drupal
2016-10-29 09:38:44
Comments
Leave a Comment

Please login to continue.