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