Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
44 | public function toDMN() |
||
45 | { |
||
46 | return |
||
47 | '<input id="' . uniqid('input') . '" label="' . $this->label . '">' . |
||
48 | '<inputExpression id="' . uniqid('inputExpression') . '" typeRef="' . $this->type . '">' . |
||
49 | '<text>' . $this->name . '</text>' . |
||
50 | '</inputExpression>' . |
||
51 | '</input>'; |
||
52 | } |
||
77 | } |