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


PHP CI_Model::CI_Model方法代碼示例

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


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

示例1:

 function User_mod()
 {
     parent::CI_Model();
     $this->user_menu();
     $query = $this->db->get('group');
     $this->user_cats = $query->result();
 }
開發者ID:pussbb,項目名稱:CI_DEV_CMS,代碼行數:7,代碼來源:user_mod.php

示例2:

 function __construct()
 {
     parent::CI_Model();
     $this->CI =& get_instance();
     $this->CI->load->library('twitter/twitter');
     // Try to authenticate
     $auth = $this->CI->twitter->oauth($this->CI->settings->item('twitter_consumer_key'), $this->CI->settings->item('twitter_consumer_key_secret'), $this->CI->settings->item('twitter_access_token'), $this->CI->settings->item('twitter_access_token_secret'));
 }
開發者ID:8496tar,項目名稱:pyrocms,代碼行數:8,代碼來源:twitter_m.php

示例3: while

 function __construct()
 {
     parent::CI_Model();
     $this->_obj =& get_instance();
     $migration_current = $this->_get_migration_current();
     if ($migration_current < $this->_migration_latest) {
         $this->_obj->load->dbforge();
         $this->dbforge = $this->_obj->dbforge;
         while ($migration_current < $this->_migration_latest) {
             $process = $migration_current + 1;
             $method = 'migration_' . $process;
             $this->{$method}();
             $this->_save_migration_current($process);
             $migration_current++;
         }
     }
 }
開發者ID:patilswapnilv,項目名稱:socialize,代碼行數:17,代碼來源:socialize_migration_model.php

示例4:

 function Qhda_mod()
 {
     parent::CI_Model();
     //$this->db->close();
     $config['hostname'] = 'localhost';
     $config['username'] = 'root';
     $config['password'] = '';
     $config['database'] = 'b16_3360947_hda';
     $config['dbdriver'] = 'mysql';
     $config['dbprefix'] = null;
     $config['pconnect'] = FALSE;
     $config['db_debug'] = TRUE;
     $config['cache_on'] = FALSE;
     $config['cachedir'] = '';
     $config['char_set'] = 'utf8';
     $config['dbcollat'] = 'utf8_general_ci';
     $config['swap_pre'] = '';
     $this->qhda = $this->load->database($config, true);
     $this->load->helper('article');
 }
開發者ID:pussbb,項目名稱:CI_DEV_CMS,代碼行數:20,代碼來源:qhda_mod.php

示例5: __construct

 /**
  * The class constructer, tries to guess
  * the table name.
  *
  * @author Jamie Rumbelow
  */
 public function __construct()
 {
     parent::CI_Model();
     $this->load->helper('inflector');
     $this->_fetch_table();
 }
開發者ID:8496tar,項目名稱:pyrocms,代碼行數:12,代碼來源:MY_Model.php

示例6:

 function News_syndication()
 {
     parent::CI_Model();
 }
開發者ID:pussbb,項目名稱:CI_DEV_CMS,代碼行數:4,代碼來源:news_syndication.php

示例7:

 function User_mod()
 {
     parent::CI_Model();
     $this->user_menu();
 }
開發者ID:pussbb,項目名稱:CI_DEV_CMS,代碼行數:5,代碼來源:user_mod.php

示例8: Action

 function Action()
 {
     parent::CI_Model();
     $this->load->library('pagination');
 }
開發者ID:pussbb,項目名稱:CI_DEV_CMS,代碼行數:5,代碼來源:action.php

示例9: __construct

 public function __construct()
 {
     parent::CI_Model();
     $this->_theme = $this->settings->default_theme;
 }
開發者ID:8496tar,項目名稱:pyrocms,代碼行數:5,代碼來源:themes_m.php

示例10: App

 function App()
 {
     parent::CI_Model();
 }
開發者ID:pussbb,項目名稱:CI_DEV_CMS,代碼行數:4,代碼來源:app.php


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