freenet-router |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|---|---|---|
1 | 2 | simandl | <?php |
2 | |
||
3 | namespace Phem\Libraries\Forms\Annotations; |
||
4 | |
||
5 | use Doctrine\Common\Annotations\Annotation; |
||
6 | |
||
7 | /** |
||
8 | * Description of TextBox |
||
9 | * |
||
10 | * @author Vejvis |
||
11 | * @Annotation |
||
12 | */ |
||
13 | class Condition extends Annotation |
||
14 | { |
||
15 | public $sourceField; |
||
16 | public $triggerValue; |
||
17 | public $matchType = "EQ"; |
||
18 | public $action = "disable"; |
||
19 | |
||
20 | } |