| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function render($viewFile, $data, $return = false) |
||
| 23 | { |
||
| 24 | $viewFile = sprintf('%s.latte', $viewFile); |
||
| 25 | $latte = new Engine(); |
||
| 26 | $latte->setTempDirectory('runtime'); |
||
| 27 | if ($return) |
||
| 28 | { |
||
| 29 | return $latte->renderToString($viewFile, $data); |
||
| 30 | } |
||
| 31 | else |
||
| 32 | { |
||
| 33 | return $latte->render($viewFile, $data); |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 38 |