コード例 #1
0
ファイル: oauth.php プロジェクト: KasaiDot/FoOlSlide
 function __construct()
 {
     show_404();
     parent::__construct();
     $this->load->helper('url');
     $this->load->library('oauth_auth_server');
 }
コード例 #2
0
ファイル: auth.php プロジェクト: KasaiDot/FoOlSlide
 function __construct()
 {
     parent::__construct();
     $this->load->helper(array('form', 'url'));
     $this->load->library('form_validation');
     $this->load->library('security');
     $this->load->library('tank_auth');
     $this->lang->load('tank_auth');
     $this->viewdata['controller_title'] = _("Authorization");
 }
コード例 #3
0
ファイル: index.php プロジェクト: KasaiDot/FoOlSlide
 function __construct()
 {
     parent::__construct();
     if (!$this->tank_auth->is_logged_in()) {
         redirect('/account/auth/login/');
     }
     if ($this->uri->segment(2) == 'index') {
         redirect('/account/' . $this->uri->segment(3));
     }
     $this->load->library('form_validation');
     $this->_navbar();
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct();
 }
コード例 #5
0
ファイル: signin.php プロジェクト: KasaiDot/FoOlSlide
 function __construct()
 {
     show_404();
     parent::__construct();
 }