‪TYPO3CMS  10.4
AfterPageColumnsSelectedForLocalizationEvent.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
21 
30 {
36  private ‪$columns;
37 
44  private ‪$records;
45 
51  private ‪$parameters;
52 
56  private ‪$backendLayout;
57 
63  private ‪$columnList;
64 
66  {
67  $this->columns = ‪$columns;
68  $this->columnList = ‪$columnList;
69  $this->backendLayout = ‪$backendLayout;
70  $this->records = ‪$records;
71  $this->parameters = ‪$parameters;
72  }
73 
74  public function ‪getColumns(): array
75  {
76  return ‪$this->columns;
77  }
78 
79  public function ‪setColumns(array ‪$columns): void
80  {
81  $this->columns = ‪$columns;
82  }
83 
84  public function ‪getColumnList(): array
85  {
86  return ‪$this->columnList;
87  }
88 
89  public function ‪setColumnList(array ‪$columnList): void
90  {
91  $this->columnList = ‪$columnList;
92  }
93 
95  {
97  }
98 
99  public function ‪getRecords(): array
100  {
101  return ‪$this->records;
102  }
103 
104  public function ‪getParameters(): array
105  {
106  return ‪$this->parameters;
107  }
108 }
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\getColumnList
‪getColumnList()
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:79
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:30
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\getParameters
‪getParameters()
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:99
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\setColumnList
‪setColumnList(array $columnList)
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:84
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\$columnList
‪array $columnList
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:58
‪TYPO3\CMS\Backend\Controller\Event
Definition: AfterFormEnginePageInitializedEvent.php:18
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\$parameters
‪array $parameters
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:48
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\$columns
‪array $columns
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:35
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\getColumns
‪getColumns()
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:69
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\getBackendLayout
‪getBackendLayout()
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:89
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\__construct
‪__construct(array $columns, array $columnList, BackendLayout $backendLayout, array $records, array $parameters)
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:60
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\$records
‪array $records
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:42
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\setColumns
‪setColumns(array $columns)
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:74
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\getRecords
‪getRecords()
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:94
‪TYPO3\CMS\Backend\View\BackendLayout\BackendLayout
Definition: BackendLayout.php:25
‪TYPO3\CMS\Backend\Controller\Event\AfterPageColumnsSelectedForLocalizationEvent\$backendLayout
‪BackendLayout $backendLayout
Definition: AfterPageColumnsSelectedForLocalizationEvent.php:52