jablonka.czprosek.czf

freenet-router

Subversion Repositories:
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Framework/] [Libraries/] [Forms/] [Annotations/] [Input.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 * Description of TextBox
9 *
10 * @author Vejvis
11 * @Annotation
12 */
13class Input extends Annotation
14{
15 public $caption;
16 public $type = "text";
17 public $maxlength;
18 public $required = false;
19 public $readOnly = false;
20 public $enabled = true;
21 public $order = 99999;
22 public $formVersion = array();
23 
24}

Powered by WebSVN 2.2.1