當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Base_model::Base_model方法代碼示例

本文整理匯總了PHP中Base_model::Base_model方法的典型用法代碼示例。如果您正苦於以下問題:PHP Base_model::Base_model方法的具體用法?PHP Base_model::Base_model怎麽用?PHP Base_model::Base_model使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Base_model的用法示例。


在下文中一共展示了Base_model::Base_model方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

 function User_model()
 {
     parent::Base_model();
     $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:nithindavid,項目名稱:Kaimonokago,代碼行數:7,代碼來源:user_model.php

示例2: array

 function Preference_model()
 {
     parent::Base_model();
     $this->_TABLES = array('Option' => $this->config->item('backendpro_table_prefix') . 'preferences');
     // Cache to store already fetched items
     $this->_CACHE = array();
     // Object keyword
     // I wouldn't advise changing this, it could corrupt current
     // preferences, the reason for needing this is to stop unserialze
     // errors spamming the log files
     $this->object_keyword = "BeP::Object::";
     log_message('debug', 'BackendPro : Preference_model class loaded');
 }
開發者ID:hackjatra,項目名稱:twischedule,代碼行數:13,代碼來源:preference_model.php

示例3: MLangs

 function MLangs()
 {
     parent::Base_model();
     $table = 'omc_languages';
     $this->_TABLES = array('Langs' => 'omc_languages');
 }
開發者ID:nithindavid,項目名稱:Kaimonokago,代碼行數:6,代碼來源:mlangs.php

示例4:

 /**
  * Constructor
  *
  * @return User_is_member_of_site_model
  */
 function User_is_member_of_site_model()
 {
     parent::Base_model();
 }
開發者ID:ki8asui,項目名稱:isography,代碼行數:9,代碼來源:user_is_member_of_site_model.php

示例5:

 /**
  * Constructor
  *
  * @return User_model
  */
 function User_model()
 {
     parent::Base_model();
 }
開發者ID:ki8asui,項目名稱:isography,代碼行數:9,代碼來源:user_model.php

示例6:

 /**
  * Constructor
  *
  * @return Post_pictures_model
  */
 function Post_pictures_model()
 {
     parent::Base_model();
 }
開發者ID:ki8asui,項目名稱:isography,代碼行數:9,代碼來源:post_pictures_model.php

示例7: define

 function Preference_model()
 {
     parent::Base_model();
     define("PREFERENCES", $this->config->item('backendpro_table_prefix') . 'preferences');
     log_message('debug', 'BackendPro : Preference_model class loaded');
 }
開發者ID:nithindavid,項目名稱:Kaimonokago,代碼行數:6,代碼來源:preference_model.php

示例8: MKaimonokago

 function MKaimonokago()
 {
     parent::Base_model();
 }
開發者ID:nithindavid,項目名稱:Kaimonokago,代碼行數:4,代碼來源:mkaimonokago.php

示例9:

 /**
  * Constructor
  *
  * @return Post_model
  */
 function Owner_model()
 {
     parent::Base_model();
     $this->load->model('User_model');
 }
開發者ID:ki8asui,項目名稱:isography,代碼行數:10,代碼來源:owner_model.php

示例10:

 /**
  * Constructor
  *
  * @return Site_model
  */
 function Site_model()
 {
     parent::Base_model();
 }
開發者ID:ki8asui,項目名稱:isography,代碼行數:9,代碼來源:site_model.php

示例11: array

 function Schedule_Model()
 {
     parent::Base_model();
     $this->_prefix = 'hj_';
     $this->_TABLES = array('Schedule' => $this->_prefix . 'schedule');
 }
開發者ID:hackjatra,項目名稱:twischedule,代碼行數:6,代碼來源:schedule_model.php

示例12:

 /**
  * Constructor
  *
  * @return Post_videos_model
  */
 function Post_videos_model()
 {
     parent::Base_model();
 }
開發者ID:ki8asui,項目名稱:isography,代碼行數:9,代碼來源:post_videos_model.php

示例13: array

 function Group_Model()
 {
     parent::Base_model();
     $this->_prefix = 'hj_';
     $this->_TABLES = array('Groups' => $this->_prefix . 'group');
 }
開發者ID:hackjatra,項目名稱:twischedule,代碼行數:6,代碼來源:group_model.php

示例14:

 function Admin6_model()
 {
     parent::Base_model();
 }
開發者ID:ki8asui,項目名稱:isography,代碼行數:4,代碼來源:admin6_model.php

示例15:

 /**
  * Constructor
  *
  * @return Post_model
  */
 function Post_model()
 {
     parent::Base_model();
     $this->load->model('Post_pictures_model');
     $this->load->model('Post_videos_model');
 }
開發者ID:ki8asui,項目名稱:isography,代碼行數:11,代碼來源:post_model.php


注:本文中的Base_model::Base_model方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。