當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CI_Controller::__construct方法代碼示例

本文整理匯總了PHP中CI_Controller::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP CI_Controller::__construct方法的具體用法?PHP CI_Controller::__construct怎麽用?PHP CI_Controller::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CI_Controller的用法示例。


在下文中一共展示了CI_Controller::__construct方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct()
 {
     parent::__construct();
     parse_str($_SERVER['QUERY_STRING'], $_REQUEST);
     $this->load->library('facebook', array("appId" => '361675743907292', "secret" => '65346749b5c11d2842b322bcc99f247e'));
     $this->user = $this->facebook->getUser();
 }
開發者ID:Clickmycom-TK,項目名稱:Funeral,代碼行數:7,代碼來源:login_fb.php

示例2:

 /**
  * Index Page for this controller.
  * 
  */
 function __construct()
 {
     parent::__construct();
     $this->load->model('product');
     $this->load->model('product_category');
     $this->load->model('product_brand');
 }
開發者ID:norain2050,項目名稱:one,代碼行數:11,代碼來源:item.php

示例3:

 function __construct()
 {
     parent::__construct();
     $this->load->helper('url');
     $this->load->Model('common');
     $this->load->Model('product/productmodel', 'product');
 }
開發者ID:BellyWong,項目名稱:razor,代碼行數:7,代碼來源:authentication.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     if (!$this->session->userdata('logged_in') && $this->session->userdata('privilege') != 'administrator') {
         redirect('beranda');
     }
 }
開發者ID:ramadhanl,項目名稱:medis,代碼行數:7,代碼來源:Biaya.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('Periodo_model', 'periodos');
     $this->load->library('session');
     $this->load->database();
 }
開發者ID:Enfoco,項目名稱:GIM,代碼行數:7,代碼來源:periodo.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('achievements_and_rewards_model');
     $this->load->model('user_achievements_rewards_model');
     $this->load->model('userinfo_model');
 }
開發者ID:reSeed,項目名稱:Terminal-Dogma,代碼行數:7,代碼來源:Achievements_and_rewards.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->library(array('form_validation', 'session', 'template_admin', 'template_icon', 'tambahan_fungsi', 'cek_session'));
     $this->cek_session->cek_login();
     $this->m_checking->module("Contest", "module8", FALSE, TRUE, "home");
 }
開發者ID:azanium,項目名稱:Klumbi-Web,代碼行數:7,代碼來源:leaderboard.php

示例8: __construct

 public function __construct()
 {
     # code...
     parent::__construct();
     $this->load->helper(array('form', 'url'));
     $this->load->model('project_model');
 }
開發者ID:hardcao,項目名稱:CiProject,代碼行數:7,代碼來源:Project.php

示例9:

 function __construct()
 {
     parent::__construct();
     $this->load->helper(array('form', 'url'));
     $this->load->library('session');
     $this->load->library('myutil');
 }
開發者ID:pool13433,項目名稱:ci_mobile,代碼行數:7,代碼來源:admin.php

示例10: __construct

 public function __construct()
 {
     parent::__construct();
     // Define model
     $this->load->model("Survey_model");
     // $this->output->enable_profiler();
 }
開發者ID:almameow,項目名稱:lamp_survey,代碼行數:7,代碼來源:survey.php

示例11:

 function __construct()
 {
     parent::__construct();
     $this->load->model('sistema/configuracaomodel', 'configuracaoModel');
     $this->load->model('sistema/loginmodel', 'loginModel');
     $this->loginModel->logged();
 }
開發者ID:CodeInUFPel,項目名稱:kenobi,代碼行數:7,代碼來源:configuracao.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('Ativo_model', 'ativo');
     $this->load->model('Localizacao_model', 'loc');
     $this->load->model('Teste_model', 'teste');
 }
開發者ID:raulguilherme10,項目名稱:fastInventory,代碼行數:7,代碼來源:Teste.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     $this->user_id = $this->user_session->getUserId();
     $this->valid_logged_in = $this->user_session->isValidLoggedIn();
     $this->logged_in = $this->user_session->isLoggedIn();
 }
開發者ID:petersonb,項目名稱:ourvigor,代碼行數:7,代碼來源:profiles.php

示例14:

 function __construct()
 {
     parent::__construct();
     $this->load->library('pagination');
     $this->load->model('m_surveyor');
     $this->load->model('m_lhs');
 }
開發者ID:raflesngln,項目名稱:deaspro,代碼行數:7,代碼來源:surveyor.php

示例15: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->helper(array('url', 'form'));
     $this->load->model('login_model');
     $this->load->database('default');
 }
開發者ID:ChiNOO,項目名稱:sistema-cepii,代碼行數:7,代碼來源:login.php


注:本文中的CI_Controller::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。