当前位置: 首页>>代码示例>>PHP>>正文


PHP CI_controller类代码示例

本文整理汇总了PHP中CI_controller的典型用法代码示例。如果您正苦于以下问题:PHP CI_controller类的具体用法?PHP CI_controller怎么用?PHP CI_controller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了CI_controller类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('news_model');
     $this->load->helper('url_helper');
     //var_dump($this->config);
 }
开发者ID:renyuer,项目名称:www.ci.me,代码行数:7,代码来源:News.php

示例2: __construct

 /**
  * Class constructor
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     // load models
     $this->load->model('Html');
     $this->load->model('Session');
 }
开发者ID:zsebtanar,项目名称:zsebtanar_v4,代码行数:12,代码来源:View.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model("Empleados_model");
     $this->load->model("Departamentos_model");
     $this->load->library('form_validation');
 }
开发者ID:thewalox,项目名称:mantenimiento,代码行数:7,代码来源:empleados.php

示例4:

 function __construct()
 {
     parent::__construct();
     $this->load->helper('form');
     $this->load->library('form_validation');
     $this->load->library('session');
 }
开发者ID:anggaAde,项目名称:beasiswa,代码行数:7,代码来源:c_inputdata.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     is_installed();
     #defined in auth helper
     remove_featured_if_expired();
     $this->PER_PAGE = get_per_page_value();
     #defined in auth helper
     $this->active_theme = get_active_theme();
     $this->load->model('show_model');
     $this->load->model('user/user_model');
     $this->load->library('encrypt');
     $this->load->helper('text');
     $this->output->enable_profiler($this->config->item('debug_site'));
     if (isset($_POST['view_orderby'])) {
         $this->session->set_userdata('view_orderby', $this->input->post('view_orderby'));
     }
     if (isset($_POST['view_ordertype'])) {
         $this->session->set_userdata('view_ordertype', $this->input->post('view_ordertype'));
     }
     $system_currency_type = get_settings('realestate_settings', 'system_currency_type', 0);
     if ($system_currency_type == 0) {
         $system_currency = get_currency_icon(get_settings('realestate_settings', 'system_currency', 'USD'));
     } else {
         $system_currency = get_settings('realestate_settings', 'system_currency', 'USD');
     }
     $this->session->set_userdata('system_currency', $system_currency);
     $this->form_validation->set_error_delimiters('<div class="alert alert-danger">', '</div>');
 }
开发者ID:ageo80,项目名称:test,代码行数:29,代码来源:show_core.php

示例6:

 function __construct()
 {
     parent::__construct();
     $this->load->model('database');
     $this->load->helper('url');
     $this->load->library('tank_auth');
 }
开发者ID:jatin-github,项目名称:psycho_store,代码行数:7,代码来源:account.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     is_installed();
     #defined in auth helper
     $this->active_theme = get_active_theme();
 }
开发者ID:Ripudamangithub,项目名称:donopen,代码行数:7,代码来源:show404_core.php

示例8: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->helper('url');
     $this->load->database();
     $this->load->model('Opleiding_model');
 }
开发者ID:iChristiaan,项目名称:Werkverantwoording,代码行数:7,代码来源:Opleiding.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('Candidatos_model');
     $this->load->library('form_validation');
     $this->load->helper('text');
 }
开发者ID:thewalox,项目名称:electionsys,代码行数:7,代码来源:candidatos.php

示例10:

 function __construct()
 {
     parent::__construct();
     $this->load->model('serverP_model', '', TRUE);
     $this->load->library("nuSoap_lib");
     $this->nusoap_server = new soap_server();
     $this->nusoap_server->configureWSDL("urn:servidor");
 }
开发者ID:ElbersonConceicao,项目名称:TCC_IFMT_2015,代码行数:8,代码来源:nusoapserver.php

示例11: __construct

 public function __construct()
 {
     parent::__construct();
     $login = $this->session->userdata('is_login');
     if (!isset($login) || $login == "") {
         redirect("");
     }
 }
开发者ID:keykurniawan,项目名称:sikomper,代码行数:8,代码来源:rules_management.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('schedule_model');
     $this->load->model('duty_model');
     $this->load->model(array('twilio_model', 'sysconf_model'));
     $this->load->helper('site_helper');
 }
开发者ID:anupkelkar02,项目名称:FSM,代码行数:8,代码来源:duty_cronjob.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('payment_model');
     $this->load->model('users_model');
     $this->load->library('session');
     $this->load->helper('cookie');
 }
开发者ID:leyuan,项目名称:ViewPal,代码行数:8,代码来源:ajax.php

示例14: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model("Solicitudes_model");
     $this->load->model("Maquinas_model");
     $this->load->model("Empleados_model");
     $this->load->library('form_validation');
     $this->load->library('pdf');
 }
开发者ID:thewalox,项目名称:mantenimiento,代码行数:9,代码来源:solicitudes.php

示例15:

 function __construct()
 {
     parent::__construct();
     /* Standard Libraries */
     $this->load->database();
     $this->load->dbutil();
     $this->load->helper('download');
     /* ------------------ */
 }
开发者ID:mark51090,项目名称:app-restauran,代码行数:9,代码来源:respaldo_bd.php


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