本文整理汇总了PHP中CI_model类的典型用法代码示例。如果您正苦于以下问题:PHP CI_model类的具体用法?PHP CI_model怎么用?PHP CI_model使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了CI_model类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->load->model("Address_model", "address");
$this->load->model("Contact_model", "contact");
$this->load->model("Entity_tag_model", "entity_tag");
}
示例2: __construct
public function __construct()
{
parent::__construct();
$this->db = $this->load->database('default', TRUE);
$this->tablename = "customers";
$this->viewname = "view_customers";
}
示例3: __construct
public function __construct()
{
parent::__construct();
$this->_db_read = $this->load->database('default', TRUE);
$this->_db_write = $this->load->database('gtwo', TRUE);
$this->setTablePre();
}
示例4: array
function __construct()
{
parent::__construct();
// load custom config
$this->events->add_action('after_app_init', array($this, 'before_session_starts'));
$this->events->add_action('tendoo_settings_tables', array($this, 'set_tables'));
$this->events->add_action('before_dashboard_menus', array($this, 'before_dashboard_menus'), 1);
}
示例5: __construct
public function __construct()
{
parent::__construct();
$this->init();
$this->load->library('WxService');
$this->load->model('bind_model', 'bind');
$this->load->model('user_model', 'user');
}
示例6:
function __construct()
{
$this->version = '1.0';
parent::__construct();
if (!$this->__is_installed()) {
$this->__install_tables();
}
}
示例7:
function __construct()
{
parent::__construct();
$this->cached = $this->config->item('cached');
if ($this->cached) {
$this->load->library('cache_util');
}
}
示例8: __construct
public function __construct()
{
parent::__construct();
$this->load->model('keyword_model', 'keyword');
$this->load->model('keyword_list_model', 'keyword_list');
$this->load->model('material_model', 'material');
$this->load->model('material_text_model', 'material_txt');
$this->load->model('material_img_model', 'material_img');
}
示例9: __construct
public function __construct()
{
parent::__construct();
$this->load->database();
$this->load->library('session');
$this->load->library('encrypt');
//$this->load->helper('url');
$this->load->library('session');
}
示例10: array
function __construct()
{
$this->version = '1.0';
parent::__construct();
$this->events->add_action('after_app_init', array($this, 'loader'));
$this->events->add_action('tendoo_settings_tables', function () {
Modules::enable('post_type');
});
}
示例11: __construct
/**
* Class constructor
*
* @return void
*/
public function __construct()
{
parent::__construct();
$this->load->helper('url');
$this->load->helper('file');
$this->load->model('Database');
$this->DeleteOldSessions();
$this->Database->AddUser();
return;
}
示例12: __contruct
public function __contruct()
{
parent::__contruct();
/*
$this->MaTuyen= $mc;
$this->MaChuyen= $mt;
$this->BienSo= $BienSo;
$this->ThoiGianKhoiHanh= $thoigian;
*/
}
示例13: __construct
public function __construct()
{
parent::__construct();
if (empty($this->session->userdata['language'])) {
$this->session->set_userdata('language', 'english');
}
$this->language = '_' . $this->session->userdata['language'];
if ($this->session->userdata['language'] == 'english') {
$this->language = '';
}
}
示例14: __construct
public function __construct($direction = '', $question = '', $option_1 = '', $option_2 = '', $option_3 = '', $option_4 = '', $option_5 = '', $cr_option = 99)
{
parent::__construct();
$this->direction = $direction;
$this->question = $question;
$this->option_1 = $option_1;
$this->option_2 = $option_2;
$this->option_3 = $option_3;
$this->option_4 = $option_4;
$this->option_5 = $option_5;
$this->cr_option = $cr_option;
}
示例15: array
function __construct()
{
parent::__construct();
$this->events->add_action('do_register_user', array($this, 'register_user'));
$this->events->add_action('do_send_recovery', array($this, 'change_auth_settings'));
$this->events->add_action('do_send_recovery', array($this, 'recovery_email'));
$this->events->add_action('do_login', array($this, 'tendoo_login'));
$this->events->add_action('do_reset_user', array($this, 'do_reset_user'));
$this->events->add_action('do_verify_user', array($this, 'do_verify_user'));
$this->events->add_action('do_remove_module', array($this, 'module_access'), 1, 1);
$this->events->add_action('do_disable_module', array($this, 'module_access'), 1, 1);
$this->events->add_action('do_enable_module', array($this, 'module_access'), 1, 1);
}