| Conditions | 1 |
| Paths | 1 |
| Total Lines | 24 |
| Code Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function render() |
||
| 20 | { |
||
| 21 | $lang = $this->lang; |
||
| 22 | |||
| 23 | $this->misc->setNoDBConnection(true); |
||
| 24 | |||
| 25 | $this->setNoBottomLink(true); |
||
| 26 | |||
| 27 | $viewVars = ['icon' => [ |
||
| 28 | 'blank' => $this->misc->icon('blank'), |
||
| 29 | 'I' => $this->misc->icon('I'), |
||
| 30 | 'L' => $this->misc->icon('L'), |
||
| 31 | 'Lminus' => $this->misc->icon('Lminus'), |
||
| 32 | 'Loading' => $this->misc->icon('Loading'), |
||
| 33 | 'Lplus' => $this->misc->icon('Lplus'), |
||
| 34 | 'ObjectNotFound' => $this->misc->icon('ObjectNotFound'), |
||
| 35 | 'Refresh' => $this->misc->icon('Refresh'), |
||
| 36 | 'Servers' => $this->misc->icon('Servers'), |
||
| 37 | 'T' => $this->misc->icon('T'), |
||
| 38 | 'Tminus' => $this->misc->icon('Tminus'), |
||
| 39 | 'Tplus' => $this->misc->icon('Tplus'), |
||
| 40 | ]]; |
||
| 41 | |||
| 42 | echo $this->view->fetch('browser.twig', $viewVars); |
||
| 43 | } |
||
| 45 |