Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
19 | public function initialize() |
||
20 | { |
||
21 | Tag::setAttr('html', ['lang' => $this->dispatcher->getParam('language', 'string', 'en')]); |
||
22 | Tag::setTitle($this->config->path('core.name', 'Zemit Frontend')); |
||
23 | |||
24 | $this->assets->collection('head') |
||
25 | ->addCss('/head.css', true, true, [], null, true) |
||
26 | ->addJs('/head.js', true, true, [], null, true); |
||
27 | |||
28 | $this->assets->collection('footer') |
||
29 | ->addJs('/footer.js', true, true, [], null, true); |
||
30 | } |
||
32 |