示例#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');
 }