Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | function view($tpl_name, array $data = []) |
||
28 | { |
||
29 | $main_tpl = __DIR__ . "/../view/{$tpl_name}.tpl.php"; |
||
30 | if (!file_exists($main_tpl)) { |
||
31 | throw new \RuntimeException("Template file not exists: {$tpl_name}"); |
||
32 | } |
||
33 | |||
34 | ob_start(); |
||
35 | $var = new variables($data); |
||
36 | include __DIR__ . '/../view/body.tpl.php'; |
||
37 | |||
38 | return ob_get_clean(); |
||
39 | } |
||
40 | |||
56 |