freenet-router |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|---|---|---|
1 | 2 | simandl | <?php |
2 | |
||
3 | namespace Phem\Libraries\Forms\Annotations; |
||
4 | |
||
5 | use Doctrine\Common\Annotations\Annotation; |
||
6 | |
||
7 | /** |
||
8 | * |
||
9 | * @Annotation |
||
10 | */ |
||
11 | class Group extends Annotation |
||
12 | { |
||
13 | |
||
14 | public $name; |
||
15 | public $caption; |
||
16 | public $localGroupScope = false; |
||
17 | public $order = 9999; |
||
18 | public $enabled = true; |
||
19 | public $defaultOpen = true; |
||
20 | |
||
21 | } |