freenet-router |
Subversion Repositories: |
Compare with Previous - Blame - Download
<?php
namespace Phem\Libraries\Forms\Annotations;
use Doctrine\Common\Annotations\Annotation;
/**
* Description of SelectBox
*
* @author Vejvis
* @Annotation
*/
class Select extends Annotation
{
public $caption;
public $options;
public $readOnly = false;
public $required = false;
public $enabled = true;
public $order = 99999;
}