‪TYPO3CMS  10.4
AbstractRequestHandler.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
22 
28 {
32  protected ‪$objectManager;
33 
37  protected ‪$dispatcher;
38 
42  protected ‪$requestBuilder;
43 
47  protected ‪$environmentService;
48 
53  {
54  $this->dispatcher = ‪$dispatcher;
55  }
56 
61  {
62  $this->requestBuilder = ‪$requestBuilder;
63  }
64 
69  {
70  $this->objectManager = ‪$objectManager;
71  }
72 
77  {
78  $this->environmentService = ‪$environmentService;
79  }
80 
86  public function ‪canHandleRequest()
87  {
88  return true;
89  }
90 
97  public function ‪getPriority()
98  {
99  return 100;
100  }
101 }
‪TYPO3\CMS\Extbase\Mvc\Dispatcher
Definition: Dispatcher.php:35
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\canHandleRequest
‪bool canHandleRequest()
Definition: AbstractRequestHandler.php:82
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\getPriority
‪int getPriority()
Definition: AbstractRequestHandler.php:93
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\$dispatcher
‪TYPO3 CMS Extbase Mvc Dispatcher $dispatcher
Definition: AbstractRequestHandler.php:35
‪TYPO3\CMS\Extbase\Object\ObjectManagerInterface
Definition: ObjectManagerInterface.php:26
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\injectRequestBuilder
‪injectRequestBuilder(RequestBuilder $requestBuilder)
Definition: AbstractRequestHandler.php:56
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\injectObjectManager
‪injectObjectManager(ObjectManagerInterface $objectManager)
Definition: AbstractRequestHandler.php:64
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\injectEnvironmentService
‪injectEnvironmentService(EnvironmentService $environmentService)
Definition: AbstractRequestHandler.php:72
‪TYPO3\CMS\Extbase\Mvc\RequestHandlerInterface
Definition: RequestHandlerInterface.php:22
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler
Definition: AbstractRequestHandler.php:28
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\$objectManager
‪TYPO3 CMS Extbase Object ObjectManagerInterface $objectManager
Definition: AbstractRequestHandler.php:31
‪TYPO3\CMS\Extbase\Service\EnvironmentService
Definition: EnvironmentService.php:27
‪TYPO3\CMS\Extbase\Mvc\Web
Definition: AbstractRequestHandler.php:16
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\injectDispatcher
‪injectDispatcher(Dispatcher $dispatcher)
Definition: AbstractRequestHandler.php:48
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\$requestBuilder
‪TYPO3 CMS Extbase Mvc Web RequestBuilder $requestBuilder
Definition: AbstractRequestHandler.php:39
‪TYPO3\CMS\Extbase\Mvc\Web\AbstractRequestHandler\$environmentService
‪TYPO3 CMS Extbase Service EnvironmentService $environmentService
Definition: AbstractRequestHandler.php:43
‪TYPO3\CMS\Extbase\Mvc\Web\RequestBuilder
Definition: RequestBuilder.php:38