jablonka.czprosek.czf

freenet-router

Subversion Repositories:
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Framework/] [Libraries/] [Forms/] [Annotations/] [Input.php] - Rev 2

Compare with Previous - Blame - Download


<?php

namespace Phem\Libraries\Forms\Annotations;

use Doctrine\Common\Annotations\Annotation;

/**
 * Description of TextBox
 *
 * @author Vejvis
 * @Annotation
 */
class Input extends Annotation
{
    public $caption;
    public $type = "text";
    public $maxlength;
    public $required = false;
    public $readOnly = false;
    public $enabled = true;
    public $order = 99999;
    public $formVersion = array();

}

Powered by WebSVN 2.2.1