function UncacheableTestAccessResult::isAllowed

Checks whether this access result indicates access is explicitly allowed.

Call this method to check whether someone has access, to convert an access result object to boolean.

Return value

bool When TRUE then isForbidden() and isNeutral() are FALSE.

Overrides AccessResultInterface::isAllowed

2 calls to UncacheableTestAccessResult::isAllowed()
UncacheableTestAccessResult::andIf in core/tests/Drupal/Tests/Core/Access/AccessResultTest.php
UncacheableTestAccessResult::orIf in core/tests/Drupal/Tests/Core/Access/AccessResultTest.php

File

core/tests/Drupal/Tests/Core/Access/AccessResultTest.php, line 995

Class

UncacheableTestAccessResult

Namespace

Drupal\Tests\Core\Access

Code

public function isAllowed() {
  return $this->value === 'ALLOWED';
}

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