예제 #1
0
파일: profile.php 프로젝트: nqpp/dstore
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_contacts');
     $this->load->model('m_contact_metas');
     $this->load->model('m_contact_addresses');
 }
예제 #2
0
파일: suppliers.php 프로젝트: nqpp/dstore
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_suppliers');
     $this->load->model('m_supplier_metas');
     $this->load->model('m_supplier_addresses');
 }
예제 #3
0
파일: mycart.php 프로젝트: nqpp/dstore
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_carts');
     $this->load->model('m_cart_items');
     $this->load->library('cartcalc');
     $this->load->model('m_chargeouts');
 }
예제 #4
0
파일: store.php 프로젝트: nqpp/dstore
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_products');
     $this->load->model('m_product_metas');
     $this->load->model('m_supplier_addresses');
     $this->load->model('m_products');
     $this->load->model('m_chargeouts');
     $this->load->model('m_carts');
 }
예제 #5
0
파일: locations.php 프로젝트: nqpp/dstore
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_locations');
     //    $this->load->model('m_zones');
 }
예제 #6
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_product_metas');
 }
예제 #7
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_supplier_freights');
 }
예제 #8
0
파일: permissions.php 프로젝트: nqpp/dstore
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_permissions');
 }
예제 #9
0
파일: store_cart.php 프로젝트: nqpp/dstore
 function __construct()
 {
     parent::__construct();
     $this->load->model('m_carts');
     $this->load->model('m_cart_items');
 }
예제 #10
0
파일: change_view.php 프로젝트: nqpp/dstore
 function __construct()
 {
     parent::__construct();
 }