当前位置: 首页>>代码示例>>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();
     $this->load->database();
     $this->load->model('ConfirmModel');
     $this->load->model('UsersModel');
 }
开发者ID:nikolaybyivanov,项目名称:RG-Intern,代码行数:7,代码来源:confirm.php

示例2:

 function __Construct()
 {
     parent::__Construct();
     $this->load->model('GalleryModel');
     // load model
     $this->load->library(array('session'));
 }
开发者ID:RTougjas,项目名称:TP2015,代码行数:7,代码来源:Gallery.php

示例3:

 function __Construct()
 {
     parent::__Construct();
     $this->load->model('PictureModel');
     // load model
     $this->load->helper('form');
 }
开发者ID:RTougjas,项目名称:TP2015,代码行数:7,代码来源:Picture.php

示例4: Programmering

 function Programmering()
 {
     parent::__Construct();
     $this->load->library('session');
     if ($this->session->userdata('logged') != '1') {
         redirect('admin');
     }
 }
开发者ID:baltedewit,项目名称:slogo-playout-server,代码行数:8,代码来源:scheduling.php

示例5:

 function __Construct()
 {
     parent::__Construct();
     $this->load->model(array('EditModel', 'upload_model', 'GalleryModel', 'Profile_model'));
     // load model
     $this->load->helper(array('form', 'url'));
     $this->load->library('form_validation');
 }
开发者ID:RTougjas,项目名称:TP2015,代码行数:8,代码来源:Edit.php

示例6: redirect

 function __construct()
 {
     parent::__Construct();
     $this->load->model('mod_pengajuan', 'model');
     if ($this->outh->is_logged_in() == false) {
         redirect('login');
     }
 }
开发者ID:sabbana,项目名称:new,代码行数:8,代码来源:pengajuan.php

示例7:

 function __construct()
 {
     parent::__Construct();
     $this->load->model(array('MenuModel'));
     $this->load->library(array('form_validation'));
     $this->form_validation->set_error_delimiters('<div class="alert alert-danger" role="alert">', '</div>');
     $this->load->helper('language');
 }
开发者ID:RTougjas,项目名称:pws,代码行数:8,代码来源:FrontPage.php

示例8: __Construct

 public function __Construct()
 {
     parent::__Construct();
     $this->outh->restrict();
     if ($this->session->userdata('user_level') != 0) {
         redirect('dashboard');
     }
 }
开发者ID:sabbana,项目名称:new,代码行数:8,代码来源:mycron.php

示例9:

 /**
  * Index Page for this controller.
  *
  * Maps to the following URL
  * 		http://example.com/index.php/welcome
  *	- or -
  * 		http://example.com/index.php/welcome/index
  *	- or -
  * Since this controller is set as the default controller in
  * config/routes.php, it's displayed at http://example.com/
  *
  * So any other public methods not prefixed with an underscore will
  * map to /index.php/welcome/<method_name>
  * @see http://codeigniter.com/user_guide/general/urls.html
  */
 function __Construct()
 {
     parent::__Construct();
     $this->load->database();
     // load database
     //form validation
     $this->load->library('form_validation');
 }
开发者ID:vrushalrt,项目名称:EXATASK1,代码行数:23,代码来源:Welcome.php

示例10: redirect

 function __construct()
 {
     parent::__Construct();
     $this->load->model('Mod_master', 'model');
     if (!$this->outh->is_logged_in()) {
         redirect('login');
     }
 }
开发者ID:sabbana,项目名称:new,代码行数:8,代码来源:master.php

示例11: __construct

 public function __construct()
 {
     parent::__Construct();
     $this->load->database();
     $this->load->model('PagesModel');
     $this->load->library('../controllers/auth');
     $this->auth->authenticate();
 }
开发者ID:nikolaybyivanov,项目名称:RG-Intern,代码行数:8,代码来源:pages.php

示例12: redirect

 function __Construct()
 {
     parent::__Construct();
     $this->load->library('form_validation');
     $this->load->model('Mod_profile');
     if ($this->outh->is_logged_in() == false) {
         redirect('login');
     }
 }
开发者ID:sabbana,项目名称:new,代码行数:9,代码来源:profile.php

示例13: Ads

 function Ads()
 {
     parent::__Construct();
     $this->load->library('session');
     if ($this->session->userdata('logged') != '1') {
         redirect('admin');
     }
     $this->load->model('adsmodel');
 }
开发者ID:baltedewit,项目名称:slogo-playout-server,代码行数:9,代码来源:ads.php

示例14: Login

 function Login()
 {
     parent::__Construct();
     $this->load->library('session');
     $this->load->model('usermodel');
     if ($this->session->userdata('logged')) {
         redirect('admin/dashboard');
     }
 }
开发者ID:baltedewit,项目名称:slogo-playout-server,代码行数:9,代码来源:login.php

示例15: __Construct

 public function __Construct()
 {
     parent::__Construct();
     $this->load->database();
     $this->load->model('UsersModel');
     $this->load->model('ConfirmModel');
     if (!$this->session->userdata('is_admin')) {
         redirect('user');
     }
 }
开发者ID:nikolaybyivanov,项目名称:RG-Intern,代码行数:10,代码来源:admin.php


注:本文中的CI_Controller::__Construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。