예제 #1
0
파일: module.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('suggestion_model');
     $this->load->model('user_model');
     $this->load->helper('query_builder');
 }
예제 #2
0
파일: design.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('template_model');
     $this->load->model('usercase_model');
     $this->load->model('order_model');
     $this->load->model('user_model');
     $this->load->library('pagination');
 }
예제 #3
0
파일: site.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('user_model');
     $this->load->model('message_model');
     $this->load->helper('url');
     $this->load->config('site');
     $this->load->library("memcache_common", 1, "memcache");
 }
예제 #4
0
파일: user.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('user_model');
     $this->load->model('template_model');
     $this->load->model('usercase_model');
     $this->load->model('order_model');
     $this->load->library("pagination");
     $this->set_caching(FALSE);
 }
예제 #5
0
 public function __construct()
 {
     parent::__construct();
     $this->load->helper('wy_design');
     $this->load->helper('wy_control_tryout_helper');
     $this->load->model('control_model');
     $this->load->model('layout_model');
     $this->load->model('theme_model');
     $this->load->model('user_model');
     $this->load->library("memcache_common", 1, "memcache");
 }
예제 #6
0
파일: page.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('page_model');
     $this->load->model('template_model');
     $this->load->model('user_model');
     $this->load->model('usercase_model');
     $this->load->model('control_model');
     $this->load->helper('wy_design');
     $this->load->library('memcache_common', 1, 'memcache');
 }
예제 #7
0
파일: mytry.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('page_model');
     $this->load->model('template_model');
     $this->load->model('user_model');
     $this->load->model('usercase_model');
     $this->load->model('control_model');
     $this->load->helper('wy_design');
     $this->load->library("memcache_common", 1, "memcache");
     $this->_session_id = session_id();
 }
예제 #8
0
파일: publish1.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('template_model');
     $this->load->model('theme_model');
     $this->load->model('control_model');
     $this->load->model('layout_model');
     $this->load->model('user_model');
     $this->load->model('page_model');
     $this->load->model('publish_model');
     $this->load->model('usercase_model');
     $this->load->helper('wy_design');
 }
예제 #9
0
파일: upload.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('images_model');
     $this->load->model('usercase_model');
 }
예제 #10
0
 /**
  * Fungsi yang ingin dijalankan sesaat setelah action
  * 
  */
 public function after_action()
 {
     $this->layout->render();
     parent::after_action();
 }
예제 #11
0
파일: client.php 프로젝트: ansu2009/web
 public function __construct()
 {
     parent::__construct();
     $this->load->model('publish_model');
 }