TYPO3  7.6
beuser/Classes/Domain/Model/BackendUserGroup.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Beuser\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 $title;
26 
30  protected $description;
31 
35  protected $hidden;
36 
41  protected $subGroups;
42 
46  public function setTitle($title)
47  {
48  $this->title = $title;
49  }
50 
54  public function getTitle()
55  {
56  return $this->title;
57  }
58 
62  public function getDescription()
63  {
64  return $this->description;
65  }
66 
70  public function setDescription($description)
71  {
72  $this->description = $description;
73  }
74 
78  public function setHidden($hidden)
79  {
80  $this->hidden = $hidden;
81  }
82 
86  public function getHidden()
87  {
88  return $this->hidden;
89  }
90 
94  public function setSubGroups($subGroups)
95  {
96  $this->subGroups = $subGroups;
97  }
98 
102  public function getSubGroups()
103  {
104  return $this->subGroups;
105  }
106 }