blob: dfb48a5d0402a686e0634ed05d9c743a40839227 [file] [log] [blame]
adminb0dd10f2006-08-25 17:25:49 +00001<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
2/**
3 * Code Igniter
4 *
5 * An open source application development framework for PHP 4.3.2 or newer
6 *
7 * @package CodeIgniter
8 * @author Rick Ellis
9 * @copyright Copyright (c) 2006, pMachine, Inc.
admine334c472006-10-21 19:44:22 +000010 * @license http://www.codeignitor.com/user_guide/license.html
adminb0dd10f2006-08-25 17:25:49 +000011 * @link http://www.codeigniter.com
12 * @since Version 1.0
13 * @filesource
14 */
admine334c472006-10-21 19:44:22 +000015
adminb0dd10f2006-08-25 17:25:49 +000016// ------------------------------------------------------------------------
17
18/**
19 * Code Igniter Model Class
20 *
21 * @package CodeIgniter
22 * @subpackage Libraries
23 * @category Libraries
24 * @author Rick Ellis
25 * @link http://www.codeigniter.com/user_guide/libraries/config.html
26 */
27class Model {
28
adminc75b09f2006-10-24 00:14:28 +000029 var $_parent_name = '';
30
adminb0dd10f2006-08-25 17:25:49 +000031 /**
32 * Constructor
33 *
34 * @access public
35 */
36 function Model()
37 {
adminc75b09f2006-10-24 00:14:28 +000038 // If the magic __get() method is used in a Model references can't be used.
39 $this->_assign_libraries( (method_exists($this, '__get')) ? FALSE : TRUE );
40
41 // We don't want to assign the model object to itself when using the
42 // assign_libraries function below so we'll grab the name of the model parent
43 $methods = get_class_methods($this);
44 if (isset($methods[0]))
45 {
46 $this->_parent_name = $methods[0];
47 }
48
adminb0dd10f2006-08-25 17:25:49 +000049 log_message('debug', "Model Class Initialized");
50 }
adminb0dd10f2006-08-25 17:25:49 +000051
52 /**
53 * Assign Libraries
54 *
55 * Creates local references to all currently instantiated objects
admine334c472006-10-21 19:44:22 +000056 * so that any syntax that can be legally used in a controller
adminc75b09f2006-10-24 00:14:28 +000057 * can be used within models.
adminb0dd10f2006-08-25 17:25:49 +000058 *
59 * @access private
60 */
adminc75b09f2006-10-24 00:14:28 +000061 function _assign_libraries($use_reference = TRUE)
adminb0dd10f2006-08-25 17:25:49 +000062 {
adminc75b09f2006-10-24 00:14:28 +000063 $CI =& get_instance();
admin0aef2222006-10-12 18:00:22 +000064 foreach (array_keys(get_object_vars($CI)) as $key)
65 {
adminc75b09f2006-10-24 00:14:28 +000066 if ( ! isset($this->$key) AND $key != $this->_parent_name)
67 {
68 // In some cases using references can cause
69 // problems so we'll conditionally use them
70 if ($use_reference == TRUE)
71 {
72 // Needed to prevent reference errors with some configurations
73 $this->$key = '';
74 $this->$key =& $CI->$key;
75 }
76 else
77 {
78 $this->$key = $CI->$key;
79 }
80 }
admin0aef2222006-10-12 18:00:22 +000081 }
adminb0dd10f2006-08-25 17:25:49 +000082 }
adminb0dd10f2006-08-25 17:25:49 +000083
84}
85// END Model Class
86?>