コード例 #1
0
ファイル: Play.php プロジェクト: neo1125/petplace_server
 function __construct()
 {
     parent::__construct();
     $this->load->model('play_model');
     $this->load->library('form_validation');
     $this->page_size = $this->config->item('default_page_size');
 }
コード例 #2
0
ファイル: Friends.php プロジェクト: neo1125/petplace_server
 function __construct()
 {
     parent::__construct();
     $this->load->model('friends_model');
     $this->load->model('version_model');
     $this->load->library('form_validation');
     $this->page_size = $this->config->item('default_page_size');
     $this->daumApi = $this->config->item('daum_api');
     $this->daumKey = $this->config->item('daum_key');
 }
コード例 #3
0
ファイル: Request.php プロジェクト: neo1125/petplace_server
 function __construct()
 {
     parent::__construct();
     $this->load->model('request_model');
 }