Conditions | 5 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
61 | protected function setModuleAssets($controller) |
||
62 | { |
||
63 | if (!$controller->isInternalRoute()) { |
||
64 | $settings = $this->module->getSettings('zadarma'); |
||
65 | if (!empty($settings['code']) && (empty($settings['trigger_id']) || $controller->isTriggered($settings['trigger_id']))) { |
||
66 | $controller->setJs($settings['code'], array('position' => 'bottom', 'aggregate' => false)); |
||
67 | } |
||
68 | } |
||
69 | } |
||
70 | |||
72 |