Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
45 | public function render( \Aimeos\MW\View\Iface $view, string $filename, array $values ) : string |
||
46 | { |
||
47 | $fluid = clone $this->view; |
||
48 | |||
49 | $fluid->setTemplatePathAndFilename( $filename ); |
||
50 | $fluid->assign( '_aimeos_view', $view ); |
||
51 | $fluid->assignMultiple( $values ); |
||
52 | |||
53 | return $fluid->render(); |
||
54 | } |
||
56 |