Esempio n. 1
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('chart_m', 'Chart');
     $this->load->model('crawl_data_m', 'Crawl');
     $this->load->model('marketplace_m', 'Marketplace');
     $this->load->model("merchant_products_m");
     $this->load->model("Users_m", 'User');
     $this->load->model("Products_m", 'Product');
     $this->load->model("Report_m", 'Report');
     $this->load->model("store_m", 'Store');
     $this->load->model("violations_m", "Violations");
     $this->_view = $this->_controller . '/index';
     $this->_default_report();
 }
Esempio n. 2
0
 function __construct()
 {
     parent::__construct();
     $this->time = microtime(true);
     $this->load->model('account_m', 'Account');
     $this->load->model('crawl_data_m', 'Crawl');
     $this->load->model('chart_m', 'Chart');
     $this->load->model('marketplace_m', 'Marketplace');
     $this->load->model("Users_m", 'User');
     $this->load->model("Products_m", 'Product');
     $this->load->model("report_m", 'Report');
     $this->load->model("store_m", 'Store');
     $this->_view = $this->_controller . '/index';
     $this->_default_report();
     $this->adjusted_for_demo = FALSE;
 }