Your IP : 52.15.78.83


Current Path : /proc/self/root/home/sudancam/.trash/shop.1/system/library/googleshopping/traits/
Upload File :
Current File : //proc/self/root/home/sudancam/.trash/shop.1/system/library/googleshopping/traits/storeloader.php

<?php

namespace googleshopping\traits;

trait StoreLoader {
    protected function loadStore($store_id) {
        $this->registry->set('setting', new \Config());

        $this->load->model('setting/setting');

        foreach ($this->model_setting_setting->getSetting('advertise_google', $store_id) as $key => $value) {
            $this->setting->set($key, $value);
        }
    }
}