class AccessCheck in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/menu_test/src/Access/AccessCheck.php \Drupal\menu_test\Access\AccessCheck
Checks access based on the 'menu_test' key in session.
Hierarchy
- class \Drupal\menu_test\Access\AccessCheck implements ContainerInjectionInterface, AccessInterface
Expanded class hierarchy of AccessCheck
1 string reference to 'AccessCheck'
- menu_test.services.yml in core/
modules/ system/ tests/ modules/ menu_test/ menu_test.services.yml - core/modules/system/tests/modules/menu_test/menu_test.services.yml
1 service uses AccessCheck
- access_check.menu_test_session in core/
modules/ system/ tests/ modules/ menu_test/ menu_test.services.yml - Drupal\menu_test\Access\AccessCheck
File
- core/
modules/ system/ tests/ modules/ menu_test/ src/ Access/ AccessCheck.php, line 14
Namespace
Drupal\menu_test\AccessView source
class AccessCheck implements AccessInterface, ContainerInjectionInterface {
/**
* The request stack.
*
* @var \Symfony\Component\HttpFoundation\RequestStack
*/
protected $requestStack;
/**
* Constructs a new AccessCheck class.
*
* @param \Symfony\Component\HttpFoundation\RequestStack $request_stack
* The request stack.
*/
public function __construct(RequestStack $request_stack) {
$this->requestStack = $request_stack;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('request_stack'));
}
/**
* Check to see if user accessed this page.
*
* @return \Drupal\Core\Access\AccessResultInterface
* The access result.
*/
public function access() {
$result = AccessResult::allowedIf($this->requestStack
->getCurrentRequest()
->getSession()
->get('menu_test', 0) < 2);
return $result
->setCacheMaxAge(0);
}
/**
* @return \Drupal\Core\Access\AccessResultForbidden
*/
public function menuLocalAction7() {
return AccessResult::forbidden()
->addCacheTags([
'menu_local_action7',
])
->addCacheContexts([
'url.query_args:menu_local_action7',
]);
}
/**
* @return \Drupal\Core\Access\AccessResultAllowed
*/
public function menuLocalAction8() {
return AccessResult::allowed()
->addCacheTags([
'menu_local_action8',
])
->addCacheContexts([
'url.query_args:menu_local_action8',
]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AccessCheck:: |
protected | property | The request stack. | |
AccessCheck:: |
public | function | Check to see if user accessed this page. | |
AccessCheck:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
|
AccessCheck:: |
public | function | ||
AccessCheck:: |
public | function | ||
AccessCheck:: |
public | function | Constructs a new AccessCheck class. |