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