admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 1 | <?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. |
| 10 | * @license http://www.codeignitor.com/user_guide/license.html |
| 11 | * @link http://www.codeigniter.com |
| 12 | * @since Version 1.0 |
| 13 | * @filesource |
| 14 | */ |
| 15 | |
| 16 | // ------------------------------------------------------------------------ |
| 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 | */ |
| 27 | class Model { |
| 28 | |
| 29 | /** |
| 30 | * Constructor |
| 31 | * |
| 32 | * @access public |
| 33 | */ |
| 34 | function Model() |
| 35 | { |
admin | 0aef222 | 2006-10-12 18:00:22 +0000 | [diff] [blame] | 36 | $this->_assign_libraries(); |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 37 | log_message('debug', "Model Class Initialized"); |
| 38 | } |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 39 | |
| 40 | /** |
| 41 | * Assign Libraries |
| 42 | * |
| 43 | * Creates local references to all currently instantiated objects |
| 44 | * so that any syntax that can be legally used in a controller |
| 45 | * can be used within models. |
| 46 | * |
| 47 | * @access private |
| 48 | */ |
admin | 0aef222 | 2006-10-12 18:00:22 +0000 | [diff] [blame] | 49 | function _assign_libraries() |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 50 | { |
admin | 0aef222 | 2006-10-12 18:00:22 +0000 | [diff] [blame] | 51 | $CI =& get_instance(); |
| 52 | |
| 53 | foreach (array_keys(get_object_vars($CI)) as $key) |
| 54 | { |
| 55 | $this->$key =& $CI->$key; |
| 56 | } |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 57 | } |
admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame] | 58 | |
| 59 | } |
| 60 | // END Model Class |
| 61 | ?> |