freenet-router |
Subversion Repositories: |
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();
}