TYPO3  7.6
ConfigurationSubcategory.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 
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 
53  public function setItems($items)
54  {
55  $this->items = $items;
56  }
57 
61  public function getItems()
62  {
63  return $this->items;
64  }
65 
72  public function addItem(\TYPO3\CMS\Extensionmanager\Domain\Model\ConfigurationItem $item)
73  {
74  $this->items->attach($item);
75  }
76 
81  public function setName($name)
82  {
83  $this->name = $name;
84  }
85 
89  public function getName()
90  {
91  return $this->name;
92  }
93 
100  public function setLabel($label)
101  {
102  $this->label = $label;
103  }
104 
110  public function getLabel()
111  {
112  return $this->label;
113  }
114 }