| Conditions | 3 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function render(\DOMDocument $domDocument) |
||
| 36 | { |
||
| 37 | $quad = Quad::create(); |
||
| 38 | $quad->setPosition($this->posX, $this->posY)->setZ($this->posZ) |
||
| 39 | ->setOpacity(0.4)->setBackgroundColor("000"); |
||
| 40 | if ($this->id) { |
||
| 41 | $quad->setId($this->id); |
||
| 42 | } |
||
| 43 | if ($this->action) { |
||
| 44 | $quad->setAction($this->action)->setFocusBackgroundColor("999"); |
||
| 45 | } |
||
| 46 | |||
| 47 | return $quad->render($domDocument); |
||
| 48 | } |
||
| 49 | |||
| 164 |