function Role::grantPermission

Same name and namespace in other branches
  1. 10 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::grantPermission()
  2. 9 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::grantPermission()
  3. 8.9.x core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::grantPermission()
  4. main core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::grantPermission()

Attributes

#[ActionMethod(adminLabel: new TranslatableMarkup('Add permission to role'))]

Parameters

string $permission: The permission to grant.

Return value

$this

Overrides RoleInterface::grantPermission

File

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

Class

Role
Defines the user role entity class.

Namespace

Drupal\user\Entity

Code

public function grantPermission($permission) {
  return $this->grantPermissions((array) $permission);
}

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