function AccessResult::isAllowed

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Access/AccessResult.php \Drupal\Core\Access\AccessResult::isAllowed()
  2. 8.9.x core/lib/Drupal/Core/Access/AccessResult.php \Drupal\Core\Access\AccessResult::isAllowed()
  3. 11.x core/lib/Drupal/Core/Access/AccessResult.php \Drupal\Core\Access\AccessResult::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

See also

\Drupal\Core\Access\AccessResultAllowed

2 calls to AccessResult::isAllowed()
AccessResult::andIf in core/lib/Drupal/Core/Access/AccessResult.php
Combine this access result with another using AND.
AccessResult::orIf in core/lib/Drupal/Core/Access/AccessResult.php
Combine this access result with another using OR.
1 method overrides AccessResult::isAllowed()
AccessResultAllowed::isAllowed in core/lib/Drupal/Core/Access/AccessResultAllowed.php
Checks whether this access result indicates access is explicitly allowed.

File

core/lib/Drupal/Core/Access/AccessResult.php, line 183

Class

AccessResult
Value object for passing an access result with cacheability metadata.

Namespace

Drupal\Core\Access

Code

public function isAllowed() {
    return FALSE;
}

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