예제 #1
0
파일: sites.php 프로젝트: ki8asui/isography
 function Sites()
 {
     parent::Base_test();
     $this->load->model('site_model');
     $this->load->model('user_model');
     $this->cur_model = $this->site_model;
 }
예제 #2
0
파일: posts.php 프로젝트: ki8asui/isography
 function Posts()
 {
     parent::Base_test();
     $this->load->model('site_model');
     $this->load->model('user_model');
     $this->load->model('post_model');
     $this->cur_model = $this->post_model;
 }
예제 #3
0
 function User_is_member_of_site()
 {
     parent::Base_test();
     $this->load->model('user_is_member_of_site_model');
     $this->load->model('user_model');
     $this->load->model('site_model');
     $this->cur_model = $this->user_is_member_of_site_model;
 }
예제 #4
0
파일: users.php 프로젝트: ki8asui/isography
 function Users()
 {
     parent::Base_test();
     $this->load->model('user_model');
     $this->cur_model = $this->user_model;
 }