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