‪TYPO3CMS  10.4
DataProviderContext.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 
19 
24 {
28  protected ‪$pageId;
29 
33  protected ‪$tableName;
34 
38  protected ‪$fieldName;
39 
43  protected ‪$data;
44 
48  protected ‪$pageTsConfig;
49 
53  public function ‪getPageId()
54  {
55  return ‪$this->pageId;
56  }
57 
62  public function ‪setPageId(‪$pageId)
63  {
64  $this->pageId = ‪$pageId;
65  return $this;
66  }
67 
71  public function ‪getTableName()
72  {
73  return ‪$this->tableName;
74  }
75 
80  public function ‪setTableName(‪$tableName)
81  {
82  $this->tableName = ‪$tableName;
83  return $this;
84  }
85 
89  public function ‪getFieldName()
90  {
91  return ‪$this->fieldName;
92  }
93 
98  public function ‪setFieldName(‪$fieldName)
99  {
100  $this->fieldName = ‪$fieldName;
101  return $this;
102  }
103 
107  public function ‪getData()
108  {
109  return ‪$this->data;
110  }
111 
116  public function ‪setData(array ‪$data)
117  {
118  $this->data = ‪$data;
119  return $this;
120  }
121 
125  public function ‪getPageTsConfig()
126  {
127  return ‪$this->pageTsConfig;
128  }
129 
134  public function ‪setPageTsConfig(array ‪$pageTsConfig)
135  {
136  $this->pageTsConfig = ‪$pageTsConfig;
137  return $this;
138  }
139 }
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setPageId
‪DataProviderContext setPageId($pageId)
Definition: DataProviderContext.php:57
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setTableName
‪DataProviderContext setTableName($tableName)
Definition: DataProviderContext.php:75
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setFieldName
‪DataProviderContext setFieldName($fieldName)
Definition: DataProviderContext.php:93
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$data
‪array $data
Definition: DataProviderContext.php:39
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setPageTsConfig
‪DataProviderContext setPageTsConfig(array $pageTsConfig)
Definition: DataProviderContext.php:129
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$fieldName
‪string $fieldName
Definition: DataProviderContext.php:35
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$tableName
‪string $tableName
Definition: DataProviderContext.php:31
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getPageId
‪int getPageId()
Definition: DataProviderContext.php:48
‪TYPO3\CMS\Backend\View\BackendLayout
Definition: BackendLayout.php:16
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$pageId
‪int $pageId
Definition: DataProviderContext.php:27
‪TYPO3\CMS\Core\SingletonInterface
Definition: SingletonInterface.php:23
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getData
‪array getData()
Definition: DataProviderContext.php:102
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getTableName
‪string getTableName()
Definition: DataProviderContext.php:66
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$pageTsConfig
‪array $pageTsConfig
Definition: DataProviderContext.php:43
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getFieldName
‪string getFieldName()
Definition: DataProviderContext.php:84
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setData
‪DataProviderContext setData(array $data)
Definition: DataProviderContext.php:111
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getPageTsConfig
‪array getPageTsConfig()
Definition: DataProviderContext.php:120
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext
Definition: DataProviderContext.php:24