| Conditions | 3 |
| Paths | 4 |
| Total Lines | 17 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 55 | public function render(\DOMDocument $domDocument) |
||
| 56 | { |
||
| 57 | $text = ""; |
||
| 58 | if ($this->getTranslate() === true) { |
||
| 59 | $text = $this->getText(); |
||
| 60 | $this->setTextId($text); |
||
| 61 | $this->setText(null); |
||
| 62 | } |
||
| 63 | |||
| 64 | $xml = parent::render($domDocument); |
||
| 65 | |||
| 66 | if ($this->getTranslate() === true) { |
||
| 67 | $this->setText($text); |
||
| 68 | } |
||
| 69 | |||
| 70 | return $xml; |
||
| 71 | } |
||
| 72 | } |
||
| 73 |