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


PHP Base_model::__construct方法代码示例

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


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

示例1: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('loan_model', 'loan');
     $this->load->model('task_flow_model', 'task_flow');
     $this->load->model('Loan_item_model', 'loan_item');
 }
开发者ID:shuai959980629,项目名称:shuai959980629.github.com,代码行数:7,代码来源:Pact_model.php

示例2: __construct

 /**
  * Model Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     $this->set_table('article');
     $this->set_pk_name('id_article');
     $this->set_lang_table('article_lang');
 }
开发者ID:BGCX261,项目名称:zillatek-project-svn-to-git,代码行数:12,代码来源:article_model.php

示例3:

 function __construct()
 {
     parent::__construct();
     $this->load->library(array('contentfactory'));
     $this->config->load('position', true);
     $this->position = $this->config->item('position', 'position');
 }
开发者ID:asonweb,项目名称:mycicms,代码行数:7,代码来源:content_model.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->table_name = 'admin';
     $this->id_name = 'auid';
     $this->me = $this->check_login();
 }
开发者ID:TF-Joynic,项目名称:tiandi,代码行数:7,代码来源:Admin_model.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('tag_model');
     $this->table_name = 'problem';
     $this->me = $this->user_model->check_login();
 }
开发者ID:TF-Joynic,项目名称:tiandi,代码行数:7,代码来源:Problem_model.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     $this->load->model('tag_model');
     $this->load->model('user_model');
     $this->table_name = 'problem_detail';
 }
开发者ID:TF-Joynic,项目名称:tiandi,代码行数:7,代码来源:Problem_detail_model.php

示例7: __construct

 /**
  * Model Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     $this->set_table($this->_author_table);
     $this->set_lang_table($this->_author_lang_table);
     $this->set_pk_name('id_author');
     parent::__construct();
 }
开发者ID:pompalini,项目名称:emngo,代码行数:12,代码来源:demo_author_model.php

示例8: array

 function __construct()
 {
     parent::__construct();
     $this->_prefix = $this->config->item('backendpro_table_prefix');
     $this->_TABLES = array('Users' => $this->_prefix . 'users', 'UserProfiles' => $this->_prefix . 'user_profiles');
     log_message('debug', 'BackendPro : User_model class loaded');
 }
开发者ID:hungnv0789,项目名称:vhtm,代码行数:7,代码来源:user_model.php

示例9: __construct

 /**
  * Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     // Extend Fields definition tables
     $this->set_table('extend_field_type');
     $this->set_pk_name('id_extend_field_type');
 }
开发者ID:pompalini,项目名称:emngo,代码行数:12,代码来源:extend_field_type_model.php

示例10: __construct

 public function __construct()
 {
     parent::__construct('recharge_order');
     $this->load->model('User_model', 'usermodel');
     $this->load->model('User_info_model', 'User_info');
     $this->load->model('Borrow_model', 'borrow');
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:7,代码来源:Recharge_model.php

示例11: array

 function __construct()
 {
     parent::__construct();
     $table = 'omc_languages';
     $this->_TABLES = array(    'Langs' => 'omc_languages',
                         );
 }
开发者ID:hungnv0789,项目名称:vhtm,代码行数:7,代码来源:mlangs.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     $this->set_table('setting');
     $this->set_pk_name('id_setting');
     $this->load->helper('path_helper');
 }
开发者ID:BGCX261,项目名称:zillatek-project-svn-to-git,代码行数:7,代码来源:settings_model.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     if (!isset($this->CI->product_model)) {
         $this->CI->load->model('product_model');
     }
 }
开发者ID:ohjack,项目名称:mallerp_standard,代码行数:7,代码来源:product_catalog_model.php

示例14: __construct

 /**
  * Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     $this->table = 'users';
     $this->pk_name = 'id_user';
     $this->meta_table = 'users_meta';
 }
开发者ID:nbourguig,项目名称:ionize,代码行数:12,代码来源:users_model.php

示例15: __construct

 /**
  * Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     $this->table = 'media';
     $this->pk_name = 'id_media';
     $this->lang_table = 'media_lang';
 }
开发者ID:BGCX261,项目名称:zillatek-project-svn-to-git,代码行数:12,代码来源:media_model.php


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