TYPO3  7.6
ConfigurationItem.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Extensionmanager\Domain\Model;
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 
71  public function setCategory($category)
72  {
73  $this->category = $category;
74  }
75 
79  public function getCategory()
80  {
81  return $this->category;
82  }
83 
89  {
90  $this->labelHeadline = $labelHeadline;
91  }
92 
96  public function getLabelHeadline()
97  {
98  return $this->labelHeadline;
99  }
100 
105  public function setLabelText($labelText)
106  {
107  $this->labelText = $labelText;
108  }
109 
113  public function getLabelText()
114  {
115  return $this->labelText;
116  }
117 
122  public function setSubCategory($subCategory)
123  {
124  $this->subCategory = $subCategory;
125  }
126 
130  public function getSubCategory()
131  {
132  return $this->subCategory;
133  }
134 
139  public function setType($type)
140  {
141  $this->type = $type;
142  }
143 
147  public function getType()
148  {
149  return $this->type;
150  }
151 
156  public function setGeneric($userFunc)
157  {
158  $this->generic = $userFunc;
159  }
160 
164  public function getGeneric()
165  {
166  return $this->generic;
167  }
168 
173  public function setName($name)
174  {
175  $this->name = $name;
176  }
177 
181  public function getName()
182  {
183  return $this->name;
184  }
185 
190  public function setValue($value)
191  {
192  $this->value = $value;
193  }
194 
198  public function getValue()
199  {
200  return $this->value;
201  }
202 
207  public function setHighlight($highlight)
208  {
209  $this->highlight = $highlight;
210  }
211 
215  public function getHighlight()
216  {
217  return $this->highlight;
218  }
219 }