TYPO3 CMS  TYPO3_8-7
ConfigurationSubcategory.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 
25 {
29  protected $name = '';
30 
34  protected $label = '';
35 
39  protected $items;
40 
44  public function __construct()
45  {
46  $this->items = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
47  }
48 
52  public function setItems($items)
53  {
54  $this->items = $items;
55  }
56 
60  public function getItems()
61  {
62  return $this->items;
63  }
64 
70  public function addItem(\TYPO3\CMS\Extensionmanager\Domain\Model\ConfigurationItem $item)
71  {
72  $this->items->attach($item);
73  }
74 
78  public function setName($name)
79  {
80  $this->name = $name;
81  }
82 
86  public function getName()
87  {
88  return $this->name;
89  }
90 
96  public function setLabel($label)
97  {
98  $this->label = $label;
99  }
100 
106  public function getLabel()
107  {
108  return $this->label;
109  }
110 }
addItem(\TYPO3\CMS\Extensionmanager\Domain\Model\ConfigurationItem $item)