‪TYPO3CMS  9.5
DataProviderContext.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 {
25  protected ‪$pageId;
26 
30  protected ‪$tableName;
31 
35  protected ‪$fieldName;
36 
40  protected ‪$data;
41 
45  protected ‪$pageTsConfig;
46 
50  public function ‪getPageId()
51  {
52  return ‪$this->pageId;
53  }
54 
59  public function ‪setPageId(‪$pageId)
60  {
61  $this->pageId = ‪$pageId;
62  return $this;
63  }
64 
68  public function ‪getTableName()
69  {
70  return ‪$this->tableName;
71  }
72 
77  public function ‪setTableName(‪$tableName)
78  {
79  $this->tableName = ‪$tableName;
80  return $this;
81  }
82 
86  public function ‪getFieldName()
87  {
88  return ‪$this->fieldName;
89  }
90 
95  public function ‪setFieldName(‪$fieldName)
96  {
97  $this->fieldName = ‪$fieldName;
98  return $this;
99  }
100 
104  public function ‪getData()
105  {
106  return ‪$this->data;
107  }
108 
113  public function ‪setData(array ‪$data)
114  {
115  $this->data = ‪$data;
116  return $this;
117  }
118 
122  public function ‪getPageTsConfig()
123  {
124  return ‪$this->pageTsConfig;
125  }
126 
131  public function ‪setPageTsConfig(array ‪$pageTsConfig)
132  {
133  $this->pageTsConfig = ‪$pageTsConfig;
134  return $this;
135  }
136 }
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setPageId
‪DataProviderContext setPageId($pageId)
Definition: DataProviderContext.php:54
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setTableName
‪DataProviderContext setTableName($tableName)
Definition: DataProviderContext.php:72
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setFieldName
‪DataProviderContext setFieldName($fieldName)
Definition: DataProviderContext.php:90
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$data
‪array $data
Definition: DataProviderContext.php:36
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setPageTsConfig
‪DataProviderContext setPageTsConfig(array $pageTsConfig)
Definition: DataProviderContext.php:126
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$fieldName
‪string $fieldName
Definition: DataProviderContext.php:32
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$tableName
‪string $tableName
Definition: DataProviderContext.php:28
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getPageId
‪int getPageId()
Definition: DataProviderContext.php:45
‪TYPO3\CMS\Backend\View\BackendLayout
Definition: BackendLayout.php:2
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$pageId
‪int $pageId
Definition: DataProviderContext.php:24
‪TYPO3\CMS\Core\SingletonInterface
Definition: SingletonInterface.php:22
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getData
‪array getData()
Definition: DataProviderContext.php:99
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getTableName
‪string getTableName()
Definition: DataProviderContext.php:63
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\$pageTsConfig
‪array $pageTsConfig
Definition: DataProviderContext.php:40
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getFieldName
‪string getFieldName()
Definition: DataProviderContext.php:81
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\setData
‪DataProviderContext setData(array $data)
Definition: DataProviderContext.php:108
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext\getPageTsConfig
‪array getPageTsConfig()
Definition: DataProviderContext.php:117
‪TYPO3\CMS\Backend\View\BackendLayout\DataProviderContext
Definition: DataProviderContext.php:21