TYPO3 CMS  TYPO3_6-2
ConfigurationItem.php
Go to the documentation of this file.
1 <?php
3 
22 
26  protected $category = '';
27 
31  protected $subCategory = '';
32 
36  protected $type = '';
37 
41  protected $labelHeadline = '';
42 
46  protected $labelText = '';
47 
51  protected $generic = '';
52 
56  protected $name = '';
57 
61  protected $value = '';
62 
66  protected $highlight = 0;
67 
72  public function setCategory($category) {
73  $this->category = $category;
74  }
75 
79  public function getCategory() {
80  return $this->category;
81  }
82 
87  public function setLabelHeadline($labelHeadline) {
88  $this->labelHeadline = $labelHeadline;
89  }
90 
94  public function getLabelHeadline() {
95  return $this->labelHeadline;
96  }
97 
102  public function setLabelText($labelText) {
103  $this->labelText = $labelText;
104  }
105 
109  public function getLabelText() {
110  return $this->labelText;
111  }
112 
117  public function setSubCategory($subCategory) {
118  $this->subCategory = $subCategory;
119  }
120 
124  public function getSubCategory() {
125  return $this->subCategory;
126  }
127 
132  public function setType($type) {
133  $this->type = $type;
134  }
135 
139  public function getType() {
140  return $this->type;
141  }
142 
147  public function setGeneric($userFunc) {
148  $this->generic = $userFunc;
149  }
150 
154  public function getGeneric() {
155  return $this->generic;
156  }
157 
162  public function setName($name) {
163  $this->name = $name;
164  }
165 
169  public function getName() {
170  return $this->name;
171  }
172 
177  public function setValue($value) {
178  $this->value = $value;
179  }
180 
184  public function getValue() {
185  return $this->value;
186  }
187 
192  public function setHighlight($highlight) {
193  $this->highlight = $highlight;
194  }
195 
199  public function getHighlight() {
200  return $this->highlight;
201  }
202 
203 }