示例#1
0
 public function __Construct()
 {
     parent::__Construct();
     $this->load->helper('file');
     $this->load->helper('url');
     $this->load->helper('mygetpath');
 }
示例#2
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/Dtobrand");
     $this->load->model("dao/Daobrand");
     $this->load->library('ion_auth');
 }
示例#3
0
 public function __construct()
 {
     parent::__construct();
     $this->load->library("Facebook");
     $this->load->model("dto/DtoProduct");
     $this->load->model("dao/DaoProduct");
 }
示例#4
0
 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
 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
 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
 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
 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
 function __construct()
 {
     parent::__construct();
     $this->load->module('mod_event');
     $this->load->module('mod_template');
 }
示例#11
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/DtoCategory");
     $this->load->model("dao/DaoCategory");
 }
示例#12
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/DtoChannels");
     $this->load->model("dao/ChannelDAO");
 }
示例#13
0
 public function __construct()
 {
     parent::__construct();
 }
示例#14
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dao/DaoUser");
 }
示例#15
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/DtoDistributors");
     $this->load->model("dao/DistributorsDAO");
 }
示例#16
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model("dto/Dtogroup");
     $this->load->model("dao/Daogroup");
 }
示例#17
0
 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");
 }