function AccessResultInterface::isForbidden
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Access/AccessResultInterface.php \Drupal\Core\Access\AccessResultInterface::isForbidden()
- 10 core/lib/Drupal/Core/Access/AccessResultInterface.php \Drupal\Core\Access\AccessResultInterface::isForbidden()
- 11.x core/lib/Drupal/Core/Access/AccessResultInterface.php \Drupal\Core\Access\AccessResultInterface::isForbidden()
Checks whether this access result indicates access is explicitly forbidden.
Call this when optimizing an access checker (for hook_entity_access() or a route requirement): if this is TRUE, the final result will be forbidden and no further checking is necessary.
Do not use this method to decide whether someone has access, to convert an access result to boolean: just because this returns FALSE, the end result might be neutral which is not allowed. Always use isAllowed() for this.
Return value
bool When TRUE then isAllowed() and isNeutral() are FALSE.
2 methods override AccessResultInterface::isForbidden()
- AccessResult::isForbidden in core/
lib/ Drupal/ Core/ Access/ AccessResult.php - UncacheableTestAccessResult::isForbidden in core/
tests/ Drupal/ Tests/ Core/ Access/ AccessResultTest.php - Checks whether this access result indicates access is explicitly forbidden.
File
-
core/
lib/ Drupal/ Core/ Access/ AccessResultInterface.php, line 48
Class
- AccessResultInterface
- Interface for access result value objects.
Namespace
Drupal\Core\AccessCode
public function isForbidden();
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.