public function Role::grantPermission in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 127 - Contains \Drupal\user\Entity\Role.
Class
- Role
- Defines the user role entity class.
Namespace
Drupal\user\EntityCode
public function grantPermission($permission) {
if ($this
->isAdmin()) {
return $this;
}
if (!$this
->hasPermission($permission)) {
$this->permissions[] = $permission;
}
return $this;
}