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


PHP CI_Controller類代碼示例

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


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

示例1: get_CI

 public static function get_CI()
 {
     if (Yupii::$CI == NULL) {
         $f = CI_Controller::get_instance();
         if ($f == NULL) {
             $f = new CI_Controller();
         }
         Yupii::$CI = $f->get_instance();
     }
     return Yupii::$CI;
 }
開發者ID:cgarciagl,項目名稱:Yupii,代碼行數:11,代碼來源:Yupii.php

示例2: __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

示例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:

 /**
  * 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

示例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();
     if (!$this->session->userdata('logged_in') && $this->session->userdata('privilege') != 'administrator') {
         redirect('beranda');
     }
 }
開發者ID:ramadhanl,項目名稱:medis,代碼行數:7,代碼來源:Biaya.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('user_model');
     $this->load->model('todo_model');
     $this->load->model('note_model');
 }
開發者ID:nandoIII,項目名稱:trackngo3,代碼行數:7,代碼來源:api.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: __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

示例10:

 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

示例11: __construct

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

示例12:

 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

示例13: __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

示例14: __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

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