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 | * @Annotation |
||
9 | */ |
||
10 | final class Form extends Annotation |
||
11 | { |
||
12 | /* @var $method String */ |
||
13 | public $method = "POST"; |
||
14 | /* @var $action String */ |
||
15 | public $action = ""; |
||
16 | |
||
17 | public $name = ""; |
||
18 | |
||
19 | public $submittedButton = true; |
||
20 | |
||
21 | public $ajax = false; |
||
22 | |
||
23 | public $defaultGroup; |
||
24 | |
||
25 | } |