TYPO3 CMS  TYPO3_6-2
DataProviderContext.php
Go to the documentation of this file.
1 <?php
3 
23 
27  protected $pageId;
28 
32  protected $tableName;
33 
37  protected $fieldName;
38 
42  protected $data;
43 
47  protected $pageTsConfig;
48 
52  public function getPageId() {
53  return $this->pageId;
54  }
55 
60  public function setPageId($pageId) {
61  $this->pageId = $pageId;
62  return $this;
63  }
64 
68  public function getTableName() {
69  return $this->tableName;
70  }
71 
76  public function setTableName($tableName) {
77  $this->tableName = $tableName;
78  return $this;
79  }
80 
84  public function getFieldName() {
85  return $this->fieldName;
86  }
87 
92  public function setFieldName($fieldName) {
93  $this->fieldName = $fieldName;
94  return $this;
95  }
96 
100  public function getData() {
101  return $this->data;
102  }
103 
108  public function setData(array $data) {
109  $this->data = $data;
110  return $this;
111  }
112 
116  public function getPageTsConfig() {
117  return $this->pageTsConfig;
118  }
119 
124  public function setPageTsConfig(array $pageTsConfig) {
125  $this->pageTsConfig = $pageTsConfig;
126  return $this;
127  }
128 
129 }