You are here

public function UncacheableTestAccessResult::isAllowed in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Access/AccessResultTest.php \Drupal\Tests\Core\Access\UncacheableTestAccessResult::isAllowed()

Checks whether this access result indicates access is explicitly allowed.

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
Combine this access result with another using AND.
UncacheableTestAccessResult::orIf in core/tests/Drupal/Tests/Core/Access/AccessResultTest.php
Combine this access result with another using OR.

File

core/tests/Drupal/Tests/Core/Access/AccessResultTest.php, line 992
Contains \Drupal\Tests\Core\Access\AccessResultTest.

Class

UncacheableTestAccessResult

Namespace

Drupal\Tests\Core\Access

Code

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