Role::isAdmin

public Role::isAdmin()

Indicates that a role has all available permissions.

Return value

bool TRUE if the role has all permissions.

Overrides RoleInterface::isAdmin

File

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

Class

Role
Defines the user role entity class.

Namespace

Drupal\user\Entity

Code

public function isAdmin() {
  return (bool) $this->is_admin;
}
doc_Drupal
2016-10-29 09:38:44
Comments
Leave a Comment

Please login to continue.