| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * CodeIgniter | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * An open source application development framework for PHP | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * This content is released under the MIT License (MIT) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  |  * Copyright (c) 2014 - 2019, British Columbia Institute of Technology | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 
					
						
							|  |  |  |  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package	CodeIgniter | 
					
						
							|  |  |  |  * @author	EllisLab Dev Team | 
					
						
							|  |  |  |  * @copyright	Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/) | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  |  * @copyright	Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/) | 
					
						
							|  |  |  |  * @license	https://opensource.org/licenses/MIT	MIT License | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * @link	https://codeigniter.com | 
					
						
							|  |  |  |  * @since	Version 1.0.0 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  * @filesource | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | defined('BASEPATH') OR exit('No direct script access allowed'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Loader Class | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * Loads framework components. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @package		CodeIgniter | 
					
						
							|  |  |  |  * @subpackage	Libraries | 
					
						
							|  |  |  |  * @category	Loader | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * @author		EllisLab Dev Team | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  |  * @link		https://codeigniter.com/userguide3/libraries/loader.html | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | class CI_Loader { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// All these are set automatically. Don't mess with them.
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Nesting level of the output buffering mechanism | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var	int | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_ob_level; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of paths to load views from | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_view_paths =	array(VIEWPATH	=> TRUE); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of paths to load libraries from | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_library_paths =	array(APPPATH, BASEPATH); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * List of paths to load models from | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @var	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_model_paths =	array(APPPATH); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of paths to load helpers from | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @var	array | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	protected $_ci_helper_paths =	array(APPPATH, BASEPATH); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of cached variables | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_cached_vars =	array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of loaded classes | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_classes =	array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of loaded models | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_models =	array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of loaded helpers | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_helpers =	array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of class name mappings | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_ci_varmap =	array( | 
					
						
							|  |  |  | 		'unit_test' => 'unit', | 
					
						
							|  |  |  | 		'user_agent' => 'agent' | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Class constructor | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Sets component load paths, gets the initial output buffering level. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	void | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function __construct() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$this->_ci_ob_level = ob_get_level(); | 
					
						
							|  |  |  | 		$this->_ci_classes =& is_loaded(); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		log_message('info', 'Loader Class Initialized'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Initializer | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @todo	Figure out a way to move this to the constructor | 
					
						
							|  |  |  | 	 *		without breaking *package_path*() methods. | 
					
						
							|  |  |  | 	 * @uses	CI_Loader::_ci_autoloader() | 
					
						
							|  |  |  | 	 * @used-by	CI_Controller::__construct() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * @return	void | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function initialize() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$this->_ci_autoloader(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Is Loaded | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * A utility method to test if a class is in the self::$_ci_classes array. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @used-by	Mainly used by Form Helper function _get_validation_object(). | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param 	string		$class	Class name to check for | 
					
						
							|  |  |  | 	 * @return 	string|bool	Class object name if loaded or FALSE | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function is_loaded($class) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return array_search(ucfirst($class), $this->_ci_classes, TRUE); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Library Loader | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Loads and instantiates libraries. | 
					
						
							|  |  |  | 	 * Designed to be called from application controllers. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	mixed	$library	Library name | 
					
						
							|  |  |  | 	 * @param	array	$params		Optional parameters to pass to the library class constructor | 
					
						
							|  |  |  | 	 * @param	string	$object_name	An optional object name to assign to | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function library($library, $params = NULL, $object_name = NULL) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (empty($library)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		elseif (is_array($library)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			foreach ($library as $key => $value) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				if (is_int($key)) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$this->library($value, $params); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$this->library($key, $params, $value); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if ($params !== NULL && ! is_array($params)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$params = NULL; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$this->_ci_load_library($library, $params, $object_name); | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Model Loader | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Loads and instantiates models. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 	 * @param	mixed	$model		Model name | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string	$name		An optional object name to assign to | 
					
						
							|  |  |  | 	 * @param	bool	$db_conn	An optional database connection configuration to initialize | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function model($model, $name = '', $db_conn = FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (empty($model)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return $this; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		elseif (is_array($model)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			foreach ($model as $key => $value) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				is_int($key) ? $this->model($value, '', $db_conn) : $this->model($key, $value, $db_conn); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$path = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Is the model in a sub-folder? If so, parse out the filename and path.
 | 
					
						
							|  |  |  | 		if (($last_slash = strrpos($model, '/')) !== FALSE) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// The path is in front of the last slash
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$path = substr($model, 0, ++$last_slash); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// And the model name behind it
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$model = substr($model, $last_slash); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (empty($name)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			$name = $model; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (in_array($name, $this->_ci_models, TRUE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$CI =& get_instance(); | 
					
						
							|  |  |  | 		if (isset($CI->$name)) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			throw new RuntimeException('The model name you are loading is the name of a resource that is already being used: '.$name); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($db_conn !== FALSE && ! class_exists('CI_DB', FALSE)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if ($db_conn === TRUE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$db_conn = ''; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$this->database($db_conn, FALSE, TRUE); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Note: All of the code under this condition used to be just:
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		//       load_class('Model', 'core');
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		//       However, load_class() instantiates classes
 | 
					
						
							|  |  |  | 		//       to cache them for later use and that prevents
 | 
					
						
							|  |  |  | 		//       MY_Model from being an abstract class and is
 | 
					
						
							|  |  |  | 		//       sub-optimal otherwise anyway.
 | 
					
						
							|  |  |  | 		if ( ! class_exists('CI_Model', FALSE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$app_path = APPPATH.'core'.DIRECTORY_SEPARATOR; | 
					
						
							|  |  |  | 			if (file_exists($app_path.'Model.php')) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				require_once($app_path.'Model.php'); | 
					
						
							|  |  |  | 				if ( ! class_exists('CI_Model', FALSE)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					throw new RuntimeException($app_path."Model.php exists, but doesn't declare class CI_Model"); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				log_message('info', 'CI_Model class loaded'); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			elseif ( ! class_exists('CI_Model', FALSE)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				require_once(BASEPATH.'core'.DIRECTORY_SEPARATOR.'Model.php'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$class = config_item('subclass_prefix').'Model'; | 
					
						
							|  |  |  | 			if (file_exists($app_path.$class.'.php')) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				require_once($app_path.$class.'.php'); | 
					
						
							|  |  |  | 				if ( ! class_exists($class, FALSE)) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					throw new RuntimeException($app_path.$class.".php exists, but doesn't declare class ".$class); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				log_message('info', config_item('subclass_prefix').'Model class loaded'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$model = ucfirst($model); | 
					
						
							|  |  |  | 		if ( ! class_exists($model, FALSE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			foreach ($this->_ci_model_paths as $mod_path) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if ( ! file_exists($mod_path.'models/'.$path.$model.'.php')) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				require_once($mod_path.'models/'.$path.$model.'.php'); | 
					
						
							|  |  |  | 				if ( ! class_exists($model, FALSE)) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					throw new RuntimeException($mod_path."models/".$path.$model.".php exists, but doesn't declare class ".$model); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if ( ! class_exists($model, FALSE)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				throw new RuntimeException('Unable to locate the model you have specified: '.$model); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if ( ! is_subclass_of($model, 'CI_Model')) | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 			throw new RuntimeException("Class ".$model." doesn't extend CI_Model"); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$this->_ci_models[] = $name; | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 		$model = new $model(); | 
					
						
							|  |  |  | 		$CI->$name = $model; | 
					
						
							|  |  |  | 		log_message('info', 'Model "'.get_class($model).'" initialized'); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Database Loader | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	mixed	$params		Database configuration options | 
					
						
							|  |  |  | 	 * @param	bool	$return 	Whether to return the database object | 
					
						
							|  |  |  | 	 * @param	bool	$query_builder	Whether to enable Query Builder | 
					
						
							|  |  |  | 	 *					(overrides the configuration setting) | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	object|bool	Database object if $return is set to TRUE, | 
					
						
							|  |  |  | 	 *					FALSE on failure, CI_Loader instance in any other case | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function database($params = '', $return = FALSE, $query_builder = NULL) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		// Grab the super object
 | 
					
						
							|  |  |  | 		$CI =& get_instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Do we even need to load the database class?
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($return === FALSE && $query_builder === NULL && isset($CI->db) && is_object($CI->db) && ! empty($CI->db->conn_id)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			return FALSE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		require_once(BASEPATH.'database/DB.php'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if ($return === TRUE) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return DB($params, $query_builder); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		// Initialize the db variable. Needed to prevent
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		// reference errors with some configurations
 | 
					
						
							|  |  |  | 		$CI->db = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Load the DB class
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$CI->db =& DB($params, $query_builder); | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Load the Database Utilities Class | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	object	$db	Database object | 
					
						
							|  |  |  | 	 * @param	bool	$return	Whether to return the DB Utilities class object or not | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function dbutil($db = NULL, $return = FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$CI =& get_instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ( ! is_object($db) OR ! ($db instanceof CI_DB)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			class_exists('CI_DB', FALSE) OR $this->database(); | 
					
						
							|  |  |  | 			$db =& $CI->db; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		require_once(BASEPATH.'database/DB_utility.php'); | 
					
						
							|  |  |  | 		require_once(BASEPATH.'database/drivers/'.$db->dbdriver.'/'.$db->dbdriver.'_utility.php'); | 
					
						
							|  |  |  | 		$class = 'CI_DB_'.$db->dbdriver.'_utility'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($return === TRUE) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return new $class($db); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$CI->dbutil = new $class($db); | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Load the Database Forge Class | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	object	$db	Database object | 
					
						
							|  |  |  | 	 * @param	bool	$return	Whether to return the DB Forge class object or not | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function dbforge($db = NULL, $return = FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$CI =& get_instance(); | 
					
						
							|  |  |  | 		if ( ! is_object($db) OR ! ($db instanceof CI_DB)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			class_exists('CI_DB', FALSE) OR $this->database(); | 
					
						
							|  |  |  | 			$db =& $CI->db; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		require_once(BASEPATH.'database/DB_forge.php'); | 
					
						
							|  |  |  | 		require_once(BASEPATH.'database/drivers/'.$db->dbdriver.'/'.$db->dbdriver.'_forge.php'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ( ! empty($db->subdriver)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$driver_path = BASEPATH.'database/drivers/'.$db->dbdriver.'/subdrivers/'.$db->dbdriver.'_'.$db->subdriver.'_forge.php'; | 
					
						
							|  |  |  | 			if (file_exists($driver_path)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				require_once($driver_path); | 
					
						
							|  |  |  | 				$class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge'; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$class = 'CI_DB_'.$db->dbdriver.'_forge'; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($return === TRUE) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return new $class($db); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$CI->dbforge = new $class($db); | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * View Loader | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Loads "view" files. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string	$view	View name | 
					
						
							|  |  |  | 	 * @param	array	$vars	An associative array of data | 
					
						
							|  |  |  | 	 *				to be extracted for use in the view | 
					
						
							|  |  |  | 	 * @param	bool	$return	Whether to return the view output | 
					
						
							|  |  |  | 	 *				or leave it to the Output class | 
					
						
							|  |  |  | 	 * @return	object|string | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function view($view, $vars = array(), $return = FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $this->_ci_load(array('_ci_view' => $view, '_ci_vars' => $this->_ci_prepare_view_vars($vars), '_ci_return' => $return)); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Generic File Loader | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string	$path	File path | 
					
						
							|  |  |  | 	 * @param	bool	$return	Whether to return the file output | 
					
						
							|  |  |  | 	 * @return	object|string | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function file($path, $return = FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		return $this->_ci_load(array('_ci_path' => $path, '_ci_return' => $return)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Set Variables | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Once variables are set they become available within | 
					
						
							|  |  |  | 	 * the controller class and its "view" files. | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	array|object|string	$vars | 
					
						
							|  |  |  | 	 *					An associative array or object containing values | 
					
						
							|  |  |  | 	 *					to be set, or a value's name if string | 
					
						
							|  |  |  | 	 * @param 	string	$val	Value to set, only used if $vars is a string | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function vars($vars, $val = '') | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$vars = is_string($vars) | 
					
						
							|  |  |  | 			? array($vars => $val) | 
					
						
							|  |  |  | 			: $this->_ci_prepare_view_vars($vars); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		foreach ($vars as $key => $val) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$this->_ci_cached_vars[$key] = $val; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $this; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Clear Cached Variables | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Clears the cached variables. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	CI_Loader | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function clear_vars() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		$this->_ci_cached_vars = array(); | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Get Variable | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Check if a variable is set and retrieve it. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string	$key	Variable name | 
					
						
							|  |  |  | 	 * @return	mixed	The variable or NULL if not found | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function get_var($key) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return isset($this->_ci_cached_vars[$key]) ? $this->_ci_cached_vars[$key] : NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Get Variables | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Retrieves all loaded variables. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function get_vars() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return $this->_ci_cached_vars; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Helper Loader | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	string|string[]	$helpers	Helper name(s) | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function helper($helpers = array()) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		is_array($helpers) OR $helpers = array($helpers); | 
					
						
							|  |  |  | 		foreach ($helpers as &$helper) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$filename = basename($helper); | 
					
						
							|  |  |  | 			$filepath = ($filename === $helper) ? '' : substr($helper, 0, strlen($helper) - strlen($filename)); | 
					
						
							|  |  |  | 			$filename = strtolower(preg_replace('#(_helper)?(\.php)?$#i', '', $filename)).'_helper'; | 
					
						
							|  |  |  | 			$helper   = $filepath.$filename; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			if (isset($this->_ci_helpers[$helper])) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Is this a helper extension request?
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$ext_helper = config_item('subclass_prefix').$filename; | 
					
						
							|  |  |  | 			$ext_loaded = FALSE; | 
					
						
							|  |  |  | 			foreach ($this->_ci_helper_paths as $path) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				if (file_exists($path.'helpers/'.$ext_helper.'.php')) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					include_once($path.'helpers/'.$ext_helper.'.php'); | 
					
						
							|  |  |  | 					$ext_loaded = TRUE; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			// If we have loaded extensions - check if the base one is here
 | 
					
						
							|  |  |  | 			if ($ext_loaded === TRUE) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$base_helper = BASEPATH.'helpers/'.$helper.'.php'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				if ( ! file_exists($base_helper)) | 
					
						
							|  |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					show_error('Unable to load the requested file: helpers/'.$helper.'.php'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				include_once($base_helper); | 
					
						
							|  |  |  | 				$this->_ci_helpers[$helper] = TRUE; | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				log_message('info', 'Helper loaded: '.$helper); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			// No extensions found ... try loading regular helpers and/or overrides
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			foreach ($this->_ci_helper_paths as $path) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				if (file_exists($path.'helpers/'.$helper.'.php')) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					include_once($path.'helpers/'.$helper.'.php'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					$this->_ci_helpers[$helper] = TRUE; | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					log_message('info', 'Helper loaded: '.$helper); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// unable to load the helper
 | 
					
						
							|  |  |  | 			if ( ! isset($this->_ci_helpers[$helper])) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				show_error('Unable to load the requested file: helpers/'.$helper.'.php'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Load Helpers | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * An alias for the helper() method in case the developer has | 
					
						
							|  |  |  | 	 * written the plural form of it. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @uses	CI_Loader::helper() | 
					
						
							|  |  |  | 	 * @param	string|string[]	$helpers	Helper name(s) | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function helpers($helpers = array()) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $this->helper($helpers); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Language Loader | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Loads language files. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	string|string[]	$files	List of language file names to load | 
					
						
							|  |  |  | 	 * @param	string		Language name | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function language($files, $lang = '') | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		get_instance()->lang->load($files, $lang); | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Config Loader | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Loads a config file (an alias for CI_Config::load()). | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @uses	CI_Config::load() | 
					
						
							|  |  |  | 	 * @param	string	$file			Configuration file name | 
					
						
							|  |  |  | 	 * @param	bool	$use_sections		Whether configuration values should be loaded into their own section | 
					
						
							|  |  |  | 	 * @param	bool	$fail_gracefully	Whether to just return FALSE or display an error message | 
					
						
							|  |  |  | 	 * @return	bool	TRUE if the file was loaded correctly or FALSE on failure | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function config($file, $use_sections = FALSE, $fail_gracefully = FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return get_instance()->config->load($file, $use_sections, $fail_gracefully); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Driver Loader | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Loads a driver library. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string|string[]	$library	Driver name(s) | 
					
						
							|  |  |  | 	 * @param	array		$params		Optional parameters to pass to the driver | 
					
						
							|  |  |  | 	 * @param	string		$object_name	An optional object name to assign to | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	object|bool	Object or FALSE on failure if $library is a string | 
					
						
							|  |  |  | 	 *				and $object_name is set. CI_Loader instance otherwise. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function driver($library, $params = NULL, $object_name = NULL) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (is_array($library)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			foreach ($library as $key => $value) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (is_int($key)) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$this->driver($value, $params); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$this->driver($key, $params, $value); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return $this; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		elseif (empty($library)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return FALSE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ( ! class_exists('CI_Driver_Library', FALSE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// We aren't instantiating an object here, just making the base class available
 | 
					
						
							|  |  |  | 			require BASEPATH.'libraries/Driver.php'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// We can save the loader some time since Drivers will *always* be in a subfolder,
 | 
					
						
							|  |  |  | 		// and typically identically named to the library
 | 
					
						
							|  |  |  | 		if ( ! strpos($library, '/')) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$library = ucfirst($library).'/'.$library; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return $this->library($library, $params, $object_name); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Add Package Path | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Prepends a parent path to the library, model, helper and config | 
					
						
							|  |  |  | 	 * path arrays. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @see	CI_Loader::$_ci_library_paths | 
					
						
							|  |  |  | 	 * @see	CI_Loader::$_ci_model_paths | 
					
						
							|  |  |  | 	 * @see CI_Loader::$_ci_helper_paths | 
					
						
							|  |  |  | 	 * @see CI_Config::$_config_paths | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	string	$path		Path to add | 
					
						
							|  |  |  | 	 * @param 	bool	$view_cascade	(default: TRUE) | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function add_package_path($path, $view_cascade = TRUE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		$path = rtrim($path, '/').'/'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		array_unshift($this->_ci_library_paths, $path); | 
					
						
							|  |  |  | 		array_unshift($this->_ci_model_paths, $path); | 
					
						
							|  |  |  | 		array_unshift($this->_ci_helper_paths, $path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$this->_ci_view_paths = array($path.'views/' => $view_cascade) + $this->_ci_view_paths; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		// Add config file path
 | 
					
						
							|  |  |  | 		$config =& $this->_ci_get_component('config'); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$config->_config_paths[] = $path; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Get Package Paths | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Return a list of all package paths. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	bool	$include_base	Whether to include BASEPATH (default: FALSE) | 
					
						
							|  |  |  | 	 * @return	array | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function get_package_paths($include_base = FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return ($include_base === TRUE) ? $this->_ci_library_paths : $this->_ci_model_paths; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Remove Package Path | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Remove a path from the library, model, helper and/or config | 
					
						
							|  |  |  | 	 * path arrays if it exists. If no path is provided, the most recently | 
					
						
							|  |  |  | 	 * added path will be removed removed. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string	$path	Path to remove | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function remove_package_path($path = '') | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		$config =& $this->_ci_get_component('config'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($path === '') | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			array_shift($this->_ci_library_paths); | 
					
						
							|  |  |  | 			array_shift($this->_ci_model_paths); | 
					
						
							|  |  |  | 			array_shift($this->_ci_helper_paths); | 
					
						
							|  |  |  | 			array_shift($this->_ci_view_paths); | 
					
						
							|  |  |  | 			array_pop($config->_config_paths); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$path = rtrim($path, '/').'/'; | 
					
						
							|  |  |  | 			foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (($key = array_search($path, $this->{$var})) !== FALSE) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					unset($this->{$var}[$key]); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if (isset($this->_ci_view_paths[$path.'views/'])) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				unset($this->_ci_view_paths[$path.'views/']); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			if (($key = array_search($path, $config->_config_paths)) !== FALSE) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				unset($config->_config_paths[$key]); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// make sure the application default paths are still in the array
 | 
					
						
							|  |  |  | 		$this->_ci_library_paths = array_unique(array_merge($this->_ci_library_paths, array(APPPATH, BASEPATH))); | 
					
						
							|  |  |  | 		$this->_ci_helper_paths = array_unique(array_merge($this->_ci_helper_paths, array(APPPATH, BASEPATH))); | 
					
						
							|  |  |  | 		$this->_ci_model_paths = array_unique(array_merge($this->_ci_model_paths, array(APPPATH))); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$this->_ci_view_paths = array_merge($this->_ci_view_paths, array(APPPATH.'views/' => TRUE)); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		$config->_config_paths = array_unique(array_merge($config->_config_paths, array(APPPATH))); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Internal CI Data Loader | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Used to load views and files. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							|  |  |  | 	 * Variables are prefixed with _ci_ to avoid symbol collision with | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * variables made available to view files. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @used-by	CI_Loader::view() | 
					
						
							|  |  |  | 	 * @used-by	CI_Loader::file() | 
					
						
							|  |  |  | 	 * @param	array	$_ci_data	Data to load | 
					
						
							|  |  |  | 	 * @return	object | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	protected function _ci_load($_ci_data) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		// Set the default data variables
 | 
					
						
							|  |  |  | 		foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $_ci_val) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$$_ci_val = isset($_ci_data[$_ci_val]) ? $_ci_data[$_ci_val] : FALSE; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$file_exists = FALSE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		// Set the path to the requested file
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (is_string($_ci_path) && $_ci_path !== '') | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$_ci_x = explode('/', $_ci_path); | 
					
						
							|  |  |  | 			$_ci_file = end($_ci_x); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION); | 
					
						
							|  |  |  | 			$_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			foreach ($this->_ci_view_paths as $_ci_view_file => $cascade) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (file_exists($_ci_view_file.$_ci_file)) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$_ci_path = $_ci_view_file.$_ci_file; | 
					
						
							|  |  |  | 					$file_exists = TRUE; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if ( ! $cascade) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ( ! $file_exists && ! file_exists($_ci_path)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			show_error('Unable to load the requested file: '.$_ci_file); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// This allows anything loaded using $this->load (views, files, etc.)
 | 
					
						
							|  |  |  | 		// to become accessible from within the Controller and Model functions.
 | 
					
						
							|  |  |  | 		$_ci_CI =& get_instance(); | 
					
						
							|  |  |  | 		foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if ( ! isset($this->$_ci_key)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$this->$_ci_key =& $_ci_CI->$_ci_key; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* | 
					
						
							|  |  |  | 		 * Extract and cache variables | 
					
						
							|  |  |  | 		 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		 * You can either set variables using the dedicated $this->load->vars() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		 * function or via the second parameter of this function. We'll merge | 
					
						
							|  |  |  | 		 * the two types and cache them so that views that are embedded within | 
					
						
							|  |  |  | 		 * other views can have access to these variables. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		empty($_ci_vars) OR $this->_ci_cached_vars = array_merge($this->_ci_cached_vars, $_ci_vars); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		extract($this->_ci_cached_vars); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 		/** | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		 * Buffer the output | 
					
						
							|  |  |  | 		 * | 
					
						
							|  |  |  | 		 * We buffer the output for two reasons: | 
					
						
							|  |  |  | 		 * 1. Speed. You get a significant speed boost. | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		 * 2. So that the final rendered template can be post-processed by | 
					
						
							|  |  |  | 		 *	the output class. Why do we need post processing? For one thing, | 
					
						
							|  |  |  | 		 *	in order to show the elapsed page load time. Unless we can | 
					
						
							|  |  |  | 		 *	intercept the content right before it's sent to the browser and | 
					
						
							|  |  |  | 		 *	then stop the timer it won't be accurate. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		 */ | 
					
						
							|  |  |  | 		ob_start(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 		include($_ci_path); // include() vs include_once() allows for multiple views with the same name
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		log_message('info', 'File loaded: '.$_ci_path); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Return the file data if requested
 | 
					
						
							|  |  |  | 		if ($_ci_return === TRUE) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$buffer = ob_get_contents(); | 
					
						
							|  |  |  | 			@ob_end_clean(); | 
					
						
							|  |  |  | 			return $buffer; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* | 
					
						
							|  |  |  | 		 * Flush the buffer... or buff the flusher? | 
					
						
							|  |  |  | 		 * | 
					
						
							|  |  |  | 		 * In order to permit views to be nested within | 
					
						
							|  |  |  | 		 * other views, we need to flush the content back out whenever | 
					
						
							|  |  |  | 		 * we are beyond the first level of output buffering so that | 
					
						
							|  |  |  | 		 * it can be seen and included properly by the first included | 
					
						
							|  |  |  | 		 * template and any subsequent ones. Oy! | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (ob_get_level() > $this->_ci_ob_level + 1) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			ob_end_flush(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$_ci_CI->output->append_output(ob_get_contents()); | 
					
						
							|  |  |  | 			@ob_end_clean(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return $this; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Internal CI Library Loader | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @used-by	CI_Loader::library() | 
					
						
							|  |  |  | 	 * @uses	CI_Loader::_ci_init_library() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string	$class		Class name to load | 
					
						
							|  |  |  | 	 * @param	mixed	$params		Optional parameters to pass to the class constructor | 
					
						
							|  |  |  | 	 * @param	string	$object_name	Optional object name to assign to | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * @return	void | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	protected function _ci_load_library($class, $params = NULL, $object_name = NULL) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		// Get the class name, and while we're at it trim any slashes.
 | 
					
						
							|  |  |  | 		// The directory path can be included as part of the class name,
 | 
					
						
							|  |  |  | 		// but we don't want a leading slash
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$class = str_replace('.php', '', trim($class, '/')); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Was the path included with the class name?
 | 
					
						
							|  |  |  | 		// We look for a slash to determine this
 | 
					
						
							|  |  |  | 		if (($last_slash = strrpos($class, '/')) !== FALSE) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// Extract the path
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$subdir = substr($class, 0, ++$last_slash); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// Get the filename from the path
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$class = substr($class, $last_slash); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$subdir = ''; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$class = ucfirst($class); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Is this a stock library? There are a few special conditions if so ...
 | 
					
						
							|  |  |  | 		if (file_exists(BASEPATH.'libraries/'.$subdir.$class.'.php')) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return $this->_ci_load_stock_library($class, $subdir, $params, $object_name); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		// Safety: Was the class already loaded by a previous call?
 | 
					
						
							|  |  |  | 		if (class_exists($class, FALSE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$property = $object_name; | 
					
						
							|  |  |  | 			if (empty($property)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$property = strtolower($class); | 
					
						
							|  |  |  | 				isset($this->_ci_varmap[$property]) && $property = $this->_ci_varmap[$property]; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$CI =& get_instance(); | 
					
						
							|  |  |  | 			if (isset($CI->$property)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				log_message('debug', $class.' class already loaded. Second attempt ignored.'); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return $this->_ci_init_library($class, '', $params, $object_name); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		// Let's search for the requested library file and load it.
 | 
					
						
							|  |  |  | 		foreach ($this->_ci_library_paths as $path) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// BASEPATH has already been checked for
 | 
					
						
							|  |  |  | 			if ($path === BASEPATH) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			$filepath = $path.'libraries/'.$subdir.$class.'.php'; | 
					
						
							|  |  |  | 			// Does the file exist? No? Bummer...
 | 
					
						
							|  |  |  | 			if ( ! file_exists($filepath)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			include_once($filepath); | 
					
						
							|  |  |  | 			return $this->_ci_init_library($class, '', $params, $object_name); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// One last attempt. Maybe the library is in a subdirectory, but it wasn't specified?
 | 
					
						
							|  |  |  | 		if ($subdir === '') | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return $this->_ci_load_library($class.'/'.$class, $params, $object_name); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// If we got this far we were unable to find the requested class.
 | 
					
						
							|  |  |  | 		log_message('error', 'Unable to load the requested class: '.$class); | 
					
						
							|  |  |  | 		show_error('Unable to load the requested class: '.$class); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Internal CI Stock Library Loader | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @used-by	CI_Loader::_ci_load_library() | 
					
						
							|  |  |  | 	 * @uses	CI_Loader::_ci_init_library() | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	string	$library_name	Library name to load | 
					
						
							|  |  |  | 	 * @param	string	$file_path	Path to the library filename, relative to libraries/ | 
					
						
							|  |  |  | 	 * @param	mixed	$params		Optional parameters to pass to the class constructor | 
					
						
							|  |  |  | 	 * @param	string	$object_name	Optional object name to assign to | 
					
						
							|  |  |  | 	 * @return	void | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _ci_load_stock_library($library_name, $file_path, $params, $object_name) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		$prefix = 'CI_'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (class_exists($prefix.$library_name, FALSE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if (class_exists(config_item('subclass_prefix').$library_name, FALSE)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$prefix = config_item('subclass_prefix'); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$property = $object_name; | 
					
						
							|  |  |  | 			if (empty($property)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$property = strtolower($library_name); | 
					
						
							|  |  |  | 				isset($this->_ci_varmap[$property]) && $property = $this->_ci_varmap[$property]; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$CI =& get_instance(); | 
					
						
							|  |  |  | 			if ( ! isset($CI->$property)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				return $this->_ci_init_library($library_name, $prefix, $params, $object_name); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			log_message('debug', $library_name.' class already loaded. Second attempt ignored.'); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$paths = $this->_ci_library_paths; | 
					
						
							|  |  |  | 		array_pop($paths); // BASEPATH
 | 
					
						
							|  |  |  | 		array_pop($paths); // APPPATH (needs to be the first path checked)
 | 
					
						
							|  |  |  | 		array_unshift($paths, APPPATH); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		foreach ($paths as $path) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if (file_exists($path = $path.'libraries/'.$file_path.$library_name.'.php')) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				// Override
 | 
					
						
							|  |  |  | 				include_once($path); | 
					
						
							|  |  |  | 				if (class_exists($prefix.$library_name, FALSE)) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					return $this->_ci_init_library($library_name, $prefix, $params, $object_name); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				log_message('debug', $path.' exists, but does not declare '.$prefix.$library_name); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		include_once(BASEPATH.'libraries/'.$file_path.$library_name.'.php'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		// Check for extensions
 | 
					
						
							|  |  |  | 		$subclass = config_item('subclass_prefix').$library_name; | 
					
						
							|  |  |  | 		foreach ($paths as $path) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if (file_exists($path = $path.'libraries/'.$file_path.$subclass.'.php')) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				include_once($path); | 
					
						
							|  |  |  | 				if (class_exists($subclass, FALSE)) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$prefix = config_item('subclass_prefix'); | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				log_message('debug', $path.' exists, but does not declare '.$subclass); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return $this->_ci_init_library($library_name, $prefix, $params, $object_name); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Internal CI Library Instantiator | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @used-by	CI_Loader::_ci_load_stock_library() | 
					
						
							|  |  |  | 	 * @used-by	CI_Loader::_ci_load_library() | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	string		$class		Class name | 
					
						
							|  |  |  | 	 * @param	string		$prefix		Class name prefix | 
					
						
							|  |  |  | 	 * @param	array|null|bool	$config		Optional configuration to pass to the class constructor: | 
					
						
							|  |  |  | 	 *						FALSE to skip; | 
					
						
							|  |  |  | 	 *						NULL to search in config paths; | 
					
						
							|  |  |  | 	 *						array containing configuration data | 
					
						
							|  |  |  | 	 * @param	string		$object_name	Optional object name to assign to | 
					
						
							|  |  |  | 	 * @return	void | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	protected function _ci_init_library($class, $prefix, $config = FALSE, $object_name = NULL) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		// Is there an associated config file for this class? Note: these should always be lowercase
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		if ($config === NULL) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// Fetch the config paths containing any package paths
 | 
					
						
							|  |  |  | 			$config_component = $this->_ci_get_component('config'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (is_array($config_component->_config_paths)) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$found = FALSE; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				foreach ($config_component->_config_paths as $path) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					// We test for both uppercase and lowercase, for servers that
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					// are case-sensitive with regard to file names. Load global first,
 | 
					
						
							|  |  |  | 					// override with environment next
 | 
					
						
							|  |  |  | 					if (file_exists($path.'config/'.strtolower($class).'.php')) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 					{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 						include($path.'config/'.strtolower($class).'.php'); | 
					
						
							|  |  |  | 						$found = TRUE; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 					{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 						include($path.'config/'.ucfirst(strtolower($class)).'.php'); | 
					
						
							|  |  |  | 						$found = TRUE; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					if (file_exists($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php')) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 					{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 						include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'); | 
					
						
							|  |  |  | 						$found = TRUE; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'); | 
					
						
							|  |  |  | 						$found = TRUE; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// Break on the first found configuration, thus package
 | 
					
						
							|  |  |  | 					// files are not overridden by default paths
 | 
					
						
							|  |  |  | 					if ($found === TRUE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 					{ | 
					
						
							|  |  |  | 						break; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$class_name = $prefix.$class; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Is the class name valid?
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ( ! class_exists($class_name, FALSE)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			log_message('error', 'Non-existent class: '.$class_name); | 
					
						
							|  |  |  | 			show_error('Non-existent class: '.$class_name); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Set the variable name we will assign the class to
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		// Was a custom class name supplied? If so we'll use it
 | 
					
						
							|  |  |  | 		if (empty($object_name)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$object_name = strtolower($class); | 
					
						
							|  |  |  | 			if (isset($this->_ci_varmap[$object_name])) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$object_name = $this->_ci_varmap[$object_name]; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Don't overwrite existing properties
 | 
					
						
							|  |  |  | 		$CI =& get_instance(); | 
					
						
							|  |  |  | 		if (isset($CI->$object_name)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if ($CI->$object_name instanceof $class_name) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				log_message('debug', $class_name." has already been instantiated as '".$object_name."'. Second attempt aborted."); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			show_error("Resource '".$object_name."' already exists and is not a ".$class_name." instance."); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Save the class name and object name
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$this->_ci_classes[$object_name] = $class; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Instantiate the class
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$CI->$object_name = isset($config) | 
					
						
							|  |  |  | 			? new $class_name($config) | 
					
						
							|  |  |  | 			: new $class_name(); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * CI Autoloader | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Loads component listed in the config/autoload.php file. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @used-by	CI_Loader::initialize() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * @return	void | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	protected function _ci_autoloader() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (file_exists(APPPATH.'config/autoload.php')) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			include(APPPATH.'config/autoload.php'); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload.php')) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			include(APPPATH.'config/'.ENVIRONMENT.'/autoload.php'); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if ( ! isset($autoload)) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Autoload packages
 | 
					
						
							|  |  |  | 		if (isset($autoload['packages'])) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			foreach ($autoload['packages'] as $package_path) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$this->add_package_path($package_path); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Load any custom config file
 | 
					
						
							|  |  |  | 		if (count($autoload['config']) > 0) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			foreach ($autoload['config'] as $val) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$this->config($val); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Autoload helpers and languages
 | 
					
						
							|  |  |  | 		foreach (array('helper', 'language') as $type) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if (isset($autoload[$type]) && count($autoload[$type]) > 0) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				$this->$type($autoload[$type]); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		// Autoload drivers
 | 
					
						
							|  |  |  | 		if (isset($autoload['drivers'])) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$this->driver($autoload['drivers']); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Load libraries
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (isset($autoload['libraries']) && count($autoload['libraries']) > 0) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			// Load the database driver.
 | 
					
						
							|  |  |  | 			if (in_array('database', $autoload['libraries'])) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$this->database(); | 
					
						
							|  |  |  | 				$autoload['libraries'] = array_diff($autoload['libraries'], array('database')); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Load all other libraries
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$this->library($autoload['libraries']); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Autoload models
 | 
					
						
							|  |  |  | 		if (isset($autoload['model'])) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$this->model($autoload['model']); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Prepare variables for _ci_vars, to be later extract()-ed inside views | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Converts objects to associative arrays and filters-out internal | 
					
						
							|  |  |  | 	 * variable names (i.e. keys prefixed with '_ci_'). | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	mixed	$vars | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * @return	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	protected function _ci_prepare_view_vars($vars) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ( ! is_array($vars)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$vars = is_object($vars) | 
					
						
							|  |  |  | 				? get_object_vars($vars) | 
					
						
							|  |  |  | 				: array(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		foreach (array_keys($vars) as $key) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if (strncmp($key, '_ci_', 4) === 0) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				unset($vars[$key]); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $vars; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * CI Component getter | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Get a reference to a specific library or model. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param 	string	$component	Component name | 
					
						
							|  |  |  | 	 * @return	bool | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	protected function &_ci_get_component($component) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$CI =& get_instance(); | 
					
						
							|  |  |  | 		return $CI->$component; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |