Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 10 | public function render_view($ext_name, $tpl_file, $handle) |
|
33 | { |
||
34 | 10 | $this->set_style(array("ext/$ext_name/styles", 'styles')); |
|
35 | |||
36 | 10 | $this->set_filenames(array( |
|
37 | 10 | $handle => $tpl_file) |
|
38 | 10 | ); |
|
39 | |||
40 | 10 | $view = $this->assign_display($handle); |
|
41 | 10 | $this->context->clear(); |
|
42 | |||
43 | 10 | return $view; |
|
44 | } |
||
45 | } |
||
46 |