| Conditions | 3 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function toDMN() |
||
| 40 | { |
||
| 41 | $xml = ''; |
||
| 42 | |||
| 43 | if (isset($this->expression) === false || trim($this->expression) === '') { |
||
| 44 | $xml .= |
||
| 45 | '<outputEntry id="' . uniqid('outputEntry') . '"><text/></outputEntry>'; |
||
| 46 | } else { |
||
| 47 | $xml .= |
||
| 48 | '<outputEntry id="' . uniqid('outputEntry') . '" expressionLanguage="' . $this->expressionLanguage . '">' . |
||
| 49 | '<text><![CDATA[' . $this->expression . ']]></text>' . |
||
| 50 | '</outputEntry>'; |
||
| 51 | } |
||
| 52 | |||
| 53 | return $xml; |
||
| 54 | } |
||
| 71 | } |