| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 56 | public function hookCron() |
||
| 57 | { |
||
| 58 | $settings = $this->config->module('currency'); |
||
| 59 | |||
| 60 | if (!empty($settings['status'])) { |
||
| 61 | /* @var $model \gplcart\modules\currency\models\Currency */ |
||
| 62 | $currency = $this->getInstance('gplcart\\modules\\currency\\models\\Currency'); |
||
| 63 | $currency->setSettings($settings); |
||
| 64 | $currency->update(); |
||
| 65 | } |
||
| 66 | } |
||
| 67 | |||
| 69 |