当前位置: 首页>>代码示例>>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;未经允许,请勿转载。