jablonka.czprosek.czf

freenet-router

Subversion Repositories:
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Framework/] [Libraries/] [Forms/] [Annotations/] [Form.php] - Blame information for rev 2

 

Line No. Rev Author Line
12simandl<?php
2 
3namespace Phem\Libraries\Forms\Annotations;
4 
5use Doctrine\Common\Annotations\Annotation;
6 
7/**
8 * @Annotation
9 */
10final 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}

Powered by WebSVN 2.2.1