Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | function smarty_function_image(array $params, Smarty_Internal_Template $template) { |
||
15 | /** @var TemplatePlugin $plugin */ |
||
16 | $plugin = Stitcher::get('service.template.plugin'); |
||
17 | |||
18 | $src = isset($params['src']) ? $params['src'] : null; |
||
19 | $image = $plugin->image($src); |
||
20 | |||
21 | $template->assign($params['var'], $image); |
||
22 | } |
||
23 |