‪TYPO3CMS  10.4
ModifyPageLayoutOnLoginProviderSelectionEvent.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 
21 
26 {
30  private ‪$controller;
31 
35  private ‪$view;
36 
40  private ‪$pageRenderer;
41 
43  {
44  $this->controller = ‪$controller;
45  $this->view = ‪$view;
46  $this->pageRenderer = ‪$pageRenderer;
47  }
48 
49  public function ‪getController(): ‪LoginController
50  {
52  }
53 
54  public function ‪getView(): ‪StandaloneView
55  {
57  }
58 
59  public function ‪getPageRenderer(): ‪PageRenderer
60  {
62  }
63 }
‪TYPO3\CMS\Backend\LoginProvider\Event\ModifyPageLayoutOnLoginProviderSelectionEvent\$pageRenderer
‪PageRenderer $pageRenderer
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:37
‪TYPO3\CMS\Backend\LoginProvider\Event\ModifyPageLayoutOnLoginProviderSelectionEvent
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:26
‪TYPO3\CMS\Backend\LoginProvider\Event\ModifyPageLayoutOnLoginProviderSelectionEvent\getController
‪getController()
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:46
‪TYPO3\CMS\Backend\LoginProvider\Event\ModifyPageLayoutOnLoginProviderSelectionEvent\__construct
‪__construct(LoginController $controller, StandaloneView $view, PageRenderer $pageRenderer)
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:39
‪TYPO3\CMS\Core\Page\PageRenderer
Definition: PageRenderer.php:42
‪TYPO3\CMS\Backend\LoginProvider\Event\ModifyPageLayoutOnLoginProviderSelectionEvent\getPageRenderer
‪getPageRenderer()
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:56
‪TYPO3\CMS\Backend\LoginProvider\Event
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:16
‪TYPO3\CMS\Fluid\View\StandaloneView
Definition: StandaloneView.php:34
‪TYPO3\CMS\Backend\LoginProvider\Event\ModifyPageLayoutOnLoginProviderSelectionEvent\$controller
‪LoginController $controller
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:29
‪TYPO3\CMS\Backend\LoginProvider\Event\ModifyPageLayoutOnLoginProviderSelectionEvent\getView
‪getView()
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:51
‪TYPO3\CMS\Backend\LoginProvider\Event\ModifyPageLayoutOnLoginProviderSelectionEvent\$view
‪StandaloneView $view
Definition: ModifyPageLayoutOnLoginProviderSelectionEvent.php:33
‪TYPO3\CMS\Backend\Controller\LoginController
Definition: LoginController.php:54