當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。