| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function render($template) |
||
| 35 | { |
||
| 36 | $file = $_SERVER['DOCUMENT_ROOT'] . '/administration/view/' . $template . '.html'; |
||
| 37 | |||
| 38 | if (is_file($file)) { |
||
| 39 | extract($this->data); |
||
| 40 | |||
| 41 | ob_start(); |
||
| 42 | |||
| 43 | require($file); |
||
| 44 | |||
| 45 | return ob_get_clean(); |
||
| 46 | } |
||
| 47 | |||
| 48 | trigger_error('Error: Could not load template ' . $file . '!'); |
||
| 49 | } |
||
| 51 |