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


PHP CI_model类代码示例

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


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

示例1: __construct

 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->load->model("Address_model", "address");
     $this->load->model("Contact_model", "contact");
     $this->load->model("Entity_tag_model", "entity_tag");
 }
开发者ID:gamanox,项目名称:keypanel,代码行数:10,代码来源:Entity_model.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     $this->db = $this->load->database('default', TRUE);
     $this->tablename = "customers";
     $this->viewname = "view_customers";
 }
开发者ID:rxlisbest,项目名称:stock,代码行数:7,代码来源:customer_model.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $this->_db_read = $this->load->database('default', TRUE);
     $this->_db_write = $this->load->database('gtwo', TRUE);
     $this->setTablePre();
 }
开发者ID:zydj333,项目名称:hualiangcaifu,代码行数:7,代码来源:MY_Model+-+副本.php

示例4: array

 function __construct()
 {
     parent::__construct();
     // load custom config
     $this->events->add_action('after_app_init', array($this, 'before_session_starts'));
     $this->events->add_action('tendoo_settings_tables', array($this, 'set_tables'));
     $this->events->add_action('before_dashboard_menus', array($this, 'before_dashboard_menus'), 1);
 }
开发者ID:2329697501,项目名称:tendoo-cms,代码行数:8,代码来源:main.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this->init();
     $this->load->library('WxService');
     $this->load->model('bind_model', 'bind');
     $this->load->model('user_model', 'user');
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:8,代码来源:Wxtemplate_msg_model.php

示例6:

 function __construct()
 {
     $this->version = '1.0';
     parent::__construct();
     if (!$this->__is_installed()) {
         $this->__install_tables();
     }
 }
开发者ID:eboominathan,项目名称:tendoo-cms,代码行数:8,代码来源:setup.php

示例7:

 function __construct()
 {
     parent::__construct();
     $this->cached = $this->config->item('cached');
     if ($this->cached) {
         $this->load->library('cache_util');
     }
 }
开发者ID:nicefirework,项目名称:upble,代码行数:8,代码来源:posts.php

示例8: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('keyword_model', 'keyword');
     $this->load->model('keyword_list_model', 'keyword_list');
     $this->load->model('material_model', 'material');
     $this->load->model('material_text_model', 'material_txt');
     $this->load->model('material_img_model', 'material_img');
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:9,代码来源:Autoaply_model.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->database();
     $this->load->library('session');
     $this->load->library('encrypt');
     //$this->load->helper('url');
     $this->load->library('session');
 }
开发者ID:alonsoat,项目名称:Incidencias,代码行数:9,代码来源:User_Model.php

示例10: array

 function __construct()
 {
     $this->version = '1.0';
     parent::__construct();
     $this->events->add_action('after_app_init', array($this, 'loader'));
     $this->events->add_action('tendoo_settings_tables', function () {
         Modules::enable('post_type');
     });
 }
开发者ID:2329697501,项目名称:tendoo-cms,代码行数:9,代码来源:post_type.php

示例11: __construct

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

示例12: __contruct

 public function __contruct()
 {
     parent::__contruct();
     /*
     			$this->MaTuyen= $mc;
     $this->MaChuyen= $mt;
     $this->BienSo= $BienSo;
     $this->ThoiGianKhoiHanh= $thoigian;
     */
 }
开发者ID:phuongtai,项目名称:Git.SGB,代码行数:10,代码来源:tuyenxe_model.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     if (empty($this->session->userdata['language'])) {
         $this->session->set_userdata('language', 'english');
     }
     $this->language = '_' . $this->session->userdata['language'];
     if ($this->session->userdata['language'] == 'english') {
         $this->language = '';
     }
 }
开发者ID:Mahajyothis,项目名称:Version1.0-Git,代码行数:11,代码来源:Category_model.php

示例14: __construct

 public function __construct($direction = '', $question = '', $option_1 = '', $option_2 = '', $option_3 = '', $option_4 = '', $option_5 = '', $cr_option = 99)
 {
     parent::__construct();
     $this->direction = $direction;
     $this->question = $question;
     $this->option_1 = $option_1;
     $this->option_2 = $option_2;
     $this->option_3 = $option_3;
     $this->option_4 = $option_4;
     $this->option_5 = $option_5;
     $this->cr_option = $cr_option;
 }
开发者ID:sumitkrsaha,项目名称:finna-be-bugfixes,代码行数:12,代码来源:question_with_direction.php

示例15: array

 function __construct()
 {
     parent::__construct();
     $this->events->add_action('do_register_user', array($this, 'register_user'));
     $this->events->add_action('do_send_recovery', array($this, 'change_auth_settings'));
     $this->events->add_action('do_send_recovery', array($this, 'recovery_email'));
     $this->events->add_action('do_login', array($this, 'tendoo_login'));
     $this->events->add_action('do_reset_user', array($this, 'do_reset_user'));
     $this->events->add_action('do_verify_user', array($this, 'do_verify_user'));
     $this->events->add_action('do_remove_module', array($this, 'module_access'), 1, 1);
     $this->events->add_action('do_disable_module', array($this, 'module_access'), 1, 1);
     $this->events->add_action('do_enable_module', array($this, 'module_access'), 1, 1);
 }
开发者ID:2329697501,项目名称:tendoo-cms,代码行数:13,代码来源:actions.php


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