AccessResultAllowed.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Core\AccessFile
core/lib/Drupal/Core/Access/AccessResultAllowed.phpView source
<?php
namespace Drupal\Core\Access;
/**
* Value object indicating an allowed access result, with cacheability metadata.
*/
class AccessResultAllowed extends AccessResult {
/**
* {@inheritdoc}
*/
public function isAllowed() {
return TRUE;
}
}
Classes
Name | Description |
---|---|
AccessResultAllowed | Value object indicating an allowed access result, with cacheability metadata. |