blob: f6098d0cf5af7911ad631ce93d8f63a7ef47fc29 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 4.3.2 or newer
6 *
7 * @package CodeIgniter
8 * @author ExpressionEngine Dev Team
Derek Jones7f3719f2010-01-05 13:35:37 +00009 * @copyright Copyright (c) 2008 - 2010, EllisLab, Inc.
Derek Allard2067d1a2008-11-13 22:59:24 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
12 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * CodeIgniter Model Class
20 *
21 * @package CodeIgniter
22 * @subpackage Libraries
23 * @category Libraries
24 * @author ExpressionEngine Dev Team
25 * @link http://codeigniter.com/user_guide/libraries/config.html
26 */
Derek Jones8eae4d72010-03-02 13:47:19 -060027class CI_Model {
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029 /**
30 * Constructor
31 *
32 * @access public
33 */
Pascal Kriete287781e2010-11-10 15:43:49 -050034 function __construct()
Derek Allard2067d1a2008-11-13 22:59:24 +000035 {
Derek Allard2067d1a2008-11-13 22:59:24 +000036 log_message('debug', "Model Class Initialized");
37 }
38
39 /**
Pascal Kriete287781e2010-11-10 15:43:49 -050040 * __get
Derek Allard2067d1a2008-11-13 22:59:24 +000041 *
Pascal Kriete287781e2010-11-10 15:43:49 -050042 * Allows models to access CI's loaded classes using the same
43 * syntax as controllers.
Derek Allard2067d1a2008-11-13 22:59:24 +000044 *
45 * @access private
Barry Mienydd671972010-10-04 16:33:58 +020046 */
Pascal Kriete287781e2010-11-10 15:43:49 -050047 function __get($key)
Derek Allard2067d1a2008-11-13 22:59:24 +000048 {
Barry Mienydd671972010-10-04 16:33:58 +020049 $CI =& get_instance();
Pascal Kriete287781e2010-11-10 15:43:49 -050050 return $CI->$key;
Derek Allard2067d1a2008-11-13 22:59:24 +000051 }
Derek Allard2067d1a2008-11-13 22:59:24 +000052}
53// END Model Class
54
55/* End of file Model.php */
Derek Jonesc68dfbf2010-03-02 12:59:23 -060056/* Location: ./system/core/Model.php */