TYPO3 CMS  TYPO3_7-6
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 }