public function Role::isAdmin in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::isAdmin()
Indicates that a role has all available permissions.
Return value
bool TRUE if the role has all permissions.
Overrides RoleInterface::isAdmin
4 calls to Role::isAdmin()
- Role::getPermissions in core/
modules/ user/ src/ Entity/ Role.php - Returns a list of permissions assigned to the role.
- Role::grantPermission in core/
modules/ user/ src/ Entity/ Role.php - Grant permissions to the role.
- Role::hasPermission in core/
modules/ user/ src/ Entity/ Role.php - Checks if the role has a permission.
- Role::revokePermission in core/
modules/ user/ src/ Entity/ Role.php - Revokes a permissions from the user role.
File
- core/
modules/ user/ src/ Entity/ Role.php, line 151 - Contains \Drupal\user\Entity\Role.
Class
- Role
- Defines the user role entity class.
Namespace
Drupal\user\EntityCode
public function isAdmin() {
return (bool) $this->is_admin;
}