function Role::hasPermission

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

File

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

Class

Role
Defines the user role entity class.

Namespace

Drupal\user\Entity

Code

public function hasPermission($permission) {
  if ($this->isAdmin()) {
    return TRUE;
  }
  return in_array($permission, $this->permissions);
}

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