TYPO3 CMS  TYPO3_8-7
ConfigurationItem.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 $category = '';
26 
30  protected $subCategory = '';
31 
35  protected $type = '';
36 
40  protected $labelHeadline = '';
41 
45  protected $labelText = '';
46 
50  protected $generic = '';
51 
55  protected $name = '';
56 
60  protected $value = '';
61 
65  protected $highlight = 0;
66 
70  public function setCategory($category)
71  {
72  $this->category = $category;
73  }
74 
78  public function getCategory()
79  {
80  return $this->category;
81  }
82 
87  {
88  $this->labelHeadline = $labelHeadline;
89  }
90 
94  public function getLabelHeadline()
95  {
96  return $this->labelHeadline;
97  }
98 
102  public function setLabelText($labelText)
103  {
104  $this->labelText = $labelText;
105  }
106 
110  public function getLabelText()
111  {
112  return $this->labelText;
113  }
114 
118  public function setSubCategory($subCategory)
119  {
120  $this->subCategory = $subCategory;
121  }
122 
126  public function getSubCategory()
127  {
128  return $this->subCategory;
129  }
130 
134  public function setType($type)
135  {
136  $this->type = $type;
137  }
138 
142  public function getType()
143  {
144  return $this->type;
145  }
146 
150  public function setGeneric($userFunc)
151  {
152  $this->generic = $userFunc;
153  }
154 
158  public function getGeneric()
159  {
160  return $this->generic;
161  }
162 
166  public function setName($name)
167  {
168  $this->name = $name;
169  }
170 
174  public function getName()
175  {
176  return $this->name;
177  }
178 
182  public function setValue($value)
183  {
184  $this->value = $value;
185  }
186 
190  public function getValue()
191  {
192  return $this->value;
193  }
194 
198  public function setHighlight($highlight)
199  {
200  $this->highlight = $highlight;
201  }
202 
206  public function getHighlight()
207  {
208  return $this->highlight;
209  }
210 }