コード例 #1
0
ファイル: Theme.php プロジェクト: vuthea/SmartMartPro
 public function __Construct()
 {
     parent::__Construct();
     $this->load->helper('file');
     $this->load->helper('url');
     $this->load->helper('mygetpath');
 }
コード例 #2
0
ファイル: Brand.php プロジェクト: phengtola/UnileverPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/Dtobrand");
     $this->load->model("dao/Daobrand");
     $this->load->library('ion_auth');
 }
コード例 #3
0
ファイル: Product.php プロジェクト: vuthea/SmartMartPro
 public function __construct()
 {
     parent::__construct();
     $this->load->library("Facebook");
     $this->load->model("dto/DtoProduct");
     $this->load->model("dao/DaoProduct");
 }
コード例 #4
0
ファイル: Slide.php プロジェクト: vuthea/SmartMartPro
 public function __construct()
 {
     parent::__construct();
     $this->load->library('encryption');
     $this->load->library('session');
     $this->load->model('dao/DaoSlide');
     $this->load->model('dto/DtoSlide');
 }
コード例 #5
0
ファイル: Dashboard.php プロジェクト: vuthea/CoffeeShopPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model('dao/DaoFood');
     $this->load->model('dao/DaoFoodType');
     $this->load->model('dao/DaoPost');
     $this->load->model('dao/DaoPage');
 }
コード例 #6
0
ファイル: ema.php プロジェクト: bogiesoft/Hotel
 function __construct()
 {
     parent::__construct();
     if (empty($this->session->userdata('user_id'))) {
         redirect(site_url('login'));
     }
     $this->load->helper('general_helper');
 }
コード例 #7
0
ファイル: Page.php プロジェクト: vuthea/CoffeeShopPro
 public function __construct()
 {
     parent::__construct();
     $this->load->library('encryption');
     $this->load->library("session");
     $this->load->model("dao/DaoPage");
     $this->load->model("dto/DtoPage");
 }
コード例 #8
0
ファイル: reservation.php プロジェクト: bogiesoft/Hotel
 function __construct()
 {
     parent::__construct();
     if (empty($this->session->userdata('user_id'))) {
         redirect(site_url('login'));
     }
     //load reservation model
     $this->load->model('reservation_model');
 }
コード例 #9
0
ファイル: Dashboard.php プロジェクト: vuthea/SmartMartPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model('dto/DtoCategory');
     $this->load->model('dto/DtoProduct');
     $this->load->model('dao/Daocategory');
     $this->load->model('dao/DaoProduct');
     $this->load->model('dao/DaoSlide');
     $this->load->model('dto/DtoSlide');
     $this->load->model('dto/DtoPage');
     $this->load->model('dao/DaoPage');
     $this->load->model('dto/DtoUser');
     $this->load->model('dao/DaoUser');
 }
コード例 #10
0
ファイル: Event.php プロジェクト: xikyu46/whitecms
 function __construct()
 {
     parent::__construct();
     $this->load->module('mod_event');
     $this->load->module('mod_template');
 }
コード例 #11
0
ファイル: Category.php プロジェクト: vuthea/SmartMartPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/DtoCategory");
     $this->load->model("dao/DaoCategory");
 }
コード例 #12
0
ファイル: Channel.php プロジェクト: phengtola/UnileverPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/DtoChannels");
     $this->load->model("dao/ChannelDAO");
 }
コード例 #13
0
ファイル: Menu.php プロジェクト: vuthea/SmartMartPro
 public function __construct()
 {
     parent::__construct();
 }
コード例 #14
0
ファイル: User.php プロジェクト: vuthea/CoffeeShopPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dao/DaoUser");
 }
コード例 #15
0
ファイル: Distributor.php プロジェクト: phengtola/UnileverPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/DtoDistributors");
     $this->load->model("dao/DistributorsDAO");
 }
コード例 #16
0
ファイル: Group.php プロジェクト: phengtola/UnileverPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/Dtogroup");
     $this->load->model("dao/Daogroup");
 }
コード例 #17
0
ファイル: Outlettype.php プロジェクト: phengtola/UnileverPro
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/DtoOutletTypes");
     $this->load->model("dao/OutletTypesDAO");
 }
コード例 #18
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/Dtopromotiontype");
     $this->load->model("dao/Promotiontypedao");
 }