コード例 #1
0
ファイル: recruit.php プロジェクト: jonghyeonim/solomon
 function __construct()
 {
     parent::__construct();
 }
コード例 #2
0
ファイル: user.php プロジェクト: jonghyeonim/solomon
 function __construct()
 {
     parent::__construct();
     $this->__require_admin_login();
     $this->load->model('user_model');
 }
コード例 #3
0
ファイル: auth.php プロジェクト: jonghyeonim/solomon
 function __construct()
 {
     parent::__construct();
     $this->load->model('user_model');
     $this->load->library('form_validation');
 }
コード例 #4
0
ファイル: notice.php プロジェクト: jonghyeonim/solomon
 function __construct()
 {
     parent::__construct();
     $this->load->model('notice_model');
 }
コード例 #5
0
 function __construct()
 {
     parent::__construct();
     $this->__require_admin_login();
     $this->load->model('notice_category_model');
 }
コード例 #6
0
ファイル: recruit.php プロジェクト: jonghyeonim/solomon
 function __construct()
 {
     parent::__construct();
     $this->load->model('recruit_model');
 }