| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | public function createIcon($name, $style = '') |
||
| 51 | { |
||
| 52 | $data = file_get_contents($this->dir . '/../../../data/assets/Debugger/' . $name . '.png'); |
||
| 53 | $base64 = 'data:image/png;base64,' . base64_encode($data); |
||
| 54 | return '<img src="' . $base64 . '" style="' . $style . '" title="'. $this->title .'"/>'; |
||
| 55 | } |
||
| 56 | |||
| 69 |