blob: 9525f35d031c87d4c5a46244732e146e237b6931 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreevd7297352012-01-07 22:53:14 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreevd7297352012-01-07 22:53:14 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
Derek Allard2067d1a2008-11-13 22:59:24 +000018 *
19 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * Loader Class
31 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030032 * Loads framework components.
Derek Allard2067d1a2008-11-13 22:59:24 +000033 *
34 * @package CodeIgniter
35 * @subpackage Libraries
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @category Loader
Andrey Andreev92ebfb62012-05-17 12:49:24 +030037 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000038 * @link http://codeigniter.com/user_guide/libraries/loader.html
39 */
40class CI_Loader {
41
42 // All these are set automatically. Don't mess with them.
David Behlercda768a2011-08-14 23:52:48 +020043 /**
44 * Nesting level of the output buffering mechanism
45 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030046 * @var int
David Behlercda768a2011-08-14 23:52:48 +020047 */
Greg Aker0c9ee4a2011-04-20 09:40:17 -050048 protected $_ci_ob_level;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030049
David Behlercda768a2011-08-14 23:52:48 +020050 /**
51 * List of paths to load views from
52 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030053 * @var array
David Behlercda768a2011-08-14 23:52:48 +020054 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040055 protected $_ci_view_paths = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +030056
David Behlercda768a2011-08-14 23:52:48 +020057 /**
58 * List of paths to load libraries from
59 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030060 * @var array
David Behlercda768a2011-08-14 23:52:48 +020061 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040062 protected $_ci_library_paths = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +030063
David Behlercda768a2011-08-14 23:52:48 +020064 /**
65 * List of paths to load models from
66 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030067 * @var array
David Behlercda768a2011-08-14 23:52:48 +020068 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040069 protected $_ci_model_paths = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +030070
David Behlercda768a2011-08-14 23:52:48 +020071 /**
72 * List of paths to load helpers from
73 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030074 * @var array
David Behlercda768a2011-08-14 23:52:48 +020075 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040076 protected $_ci_helper_paths = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +030077
David Behlercda768a2011-08-14 23:52:48 +020078 /**
79 * List of loaded base classes
David Behlercda768a2011-08-14 23:52:48 +020080 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030081 * @var array
David Behlercda768a2011-08-14 23:52:48 +020082 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040083 protected $_base_classes = array(); // Set by the controller class
Andrey Andreev92ebfb62012-05-17 12:49:24 +030084
David Behlercda768a2011-08-14 23:52:48 +020085 /**
86 * List of cached variables
87 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030088 * @var array
David Behlercda768a2011-08-14 23:52:48 +020089 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040090 protected $_ci_cached_vars = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +030091
David Behlercda768a2011-08-14 23:52:48 +020092 /**
93 * List of loaded classes
94 *
Andrey Andreeved4b2582012-10-27 17:46:52 +030095 * @var array
David Behlercda768a2011-08-14 23:52:48 +020096 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040097 protected $_ci_classes = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +030098
David Behlercda768a2011-08-14 23:52:48 +020099 /**
100 * List of loaded files
101 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300102 * @var array
David Behlercda768a2011-08-14 23:52:48 +0200103 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -0400104 protected $_ci_loaded_files = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300105
David Behlercda768a2011-08-14 23:52:48 +0200106 /**
107 * List of loaded models
108 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300109 * @var array
David Behlercda768a2011-08-14 23:52:48 +0200110 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -0400111 protected $_ci_models = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300112
David Behlercda768a2011-08-14 23:52:48 +0200113 /**
114 * List of loaded helpers
115 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300116 * @var array
David Behlercda768a2011-08-14 23:52:48 +0200117 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -0400118 protected $_ci_helpers = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300119
David Behlercda768a2011-08-14 23:52:48 +0200120 /**
121 * List of class name mappings
122 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300123 * @var array
David Behlercda768a2011-08-14 23:52:48 +0200124 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -0400125 protected $_ci_varmap = array(
Timothy Warren40403d22012-04-19 16:38:50 -0400126 'unit_test' => 'unit',
127 'user_agent' => 'agent'
128 );
Derek Allard2067d1a2008-11-13 22:59:24 +0000129
130 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300131 * Class constructor
Derek Allard2067d1a2008-11-13 22:59:24 +0000132 *
Andrey Andreevcdac2482012-11-03 18:09:01 +0200133 * Sets component load paths, gets the initial output buffering level.
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300134 *
135 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +0000136 */
Greg Akerf5c84022011-04-19 17:13:03 -0500137 public function __construct()
Barry Mienydd671972010-10-04 16:33:58 +0200138 {
Derek Jones37f4b9c2011-07-01 17:56:50 -0500139 $this->_ci_ob_level = ob_get_level();
Derek Jones32bf1862010-03-02 13:46:07 -0600140 $this->_ci_library_paths = array(APPPATH, BASEPATH);
141 $this->_ci_helper_paths = array(APPPATH, BASEPATH);
142 $this->_ci_model_paths = array(APPPATH);
Joe Cianflone8eef9c72011-08-21 10:39:06 -0400143 $this->_ci_view_paths = array(VIEWPATH => TRUE);
David Behlercda768a2011-08-14 23:52:48 +0200144
Andrey Andreevd7297352012-01-07 22:53:14 +0200145 log_message('debug', 'Loader Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000146 }
Barry Mienydd671972010-10-04 16:33:58 +0200147
Derek Allard2067d1a2008-11-13 22:59:24 +0000148 // --------------------------------------------------------------------
David Behlercda768a2011-08-14 23:52:48 +0200149
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500150 /**
Andrey Andreevcdac2482012-11-03 18:09:01 +0200151 * Initializer
152 *
153 * @todo Figure out a way to move this to the constructor
154 * without breaking *package_path*() methods.
155 * @uses CI_Loader::_ci_autoloader()
156 * @used-by CI_Controller::__construct()
157 * @return void
158 */
159 public function initialize()
160 {
161 $this->_base_classes =& is_loaded();
162 $this->_ci_autoloader();
163 }
164
165 // --------------------------------------------------------------------
166
167 /**
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500168 * Is Loaded
169 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300170 * A utility method to test if a class is in the self::$_ci_classes array.
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500171 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300172 * @used-by Mainly used by Form Helper function _get_validation_object().
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500173 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300174 * @param string $class Class name to check for
175 * @return string|bool Class object name if loaded or FALSE
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500176 */
177 public function is_loaded($class)
178 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300179 return isset($this->_ci_classes[$class]) ? $this->_ci_classes[$class] : FALSE;
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500180 }
181
182 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200183
Derek Allard2067d1a2008-11-13 22:59:24 +0000184 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300185 * Library Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000186 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300187 * Loads and instantiates libraries.
188 * Designed to be called from application controllers.
Derek Allard2067d1a2008-11-13 22:59:24 +0000189 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300190 * @param string $library Library name
191 * @param array $params Optional parameters to pass to the library class constructor
192 * @param string $object_name An optional object name to assign to
Derek Allard2067d1a2008-11-13 22:59:24 +0000193 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200194 */
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500195 public function library($library = '', $params = NULL, $object_name = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000196 {
Greg Akerce433962010-10-12 09:29:35 -0500197 if (is_array($library))
198 {
Phil Sturgeon08b51692011-04-03 18:05:42 +0100199 foreach ($library as $class)
Greg Akerce433962010-10-12 09:29:35 -0500200 {
Kellas Reeves3c6e4852011-02-09 11:57:56 -0600201 $this->library($class, $params);
Greg Akerce433962010-10-12 09:29:35 -0500202 }
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000203
Greg Akerce433962010-10-12 09:29:35 -0500204 return;
205 }
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000206
Alex Bilbieed944a32012-06-02 11:07:47 +0100207 if ($library === '' OR isset($this->_base_classes[$library]))
Derek Allard2067d1a2008-11-13 22:59:24 +0000208 {
Andrey Andreeved4b2582012-10-27 17:46:52 +0300209 return;
Derek Allard2067d1a2008-11-13 22:59:24 +0000210 }
211
Derek Jones32bf1862010-03-02 13:46:07 -0600212 if ( ! is_null($params) && ! is_array($params))
Derek Allard2067d1a2008-11-13 22:59:24 +0000213 {
214 $params = NULL;
215 }
216
Kellas Reeves3c6e4852011-02-09 11:57:56 -0600217 $this->_ci_load_class($library, $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000218 }
219
220 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200221
Derek Allard2067d1a2008-11-13 22:59:24 +0000222 /**
223 * Model Loader
224 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300225 * Loads and instantiates libraries.
Derek Allard2067d1a2008-11-13 22:59:24 +0000226 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300227 * @param string $model Model name
228 * @param string $name An optional object name to assign to
229 * @param bool $db_conn An optional database connection configuration to initialize
Derek Allard2067d1a2008-11-13 22:59:24 +0000230 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200231 */
Greg Akerf5c84022011-04-19 17:13:03 -0500232 public function model($model, $name = '', $db_conn = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200233 {
Andrey Andreeved4b2582012-10-27 17:46:52 +0300234 if (empty($model))
235 {
236 return;
237 }
238 elseif (is_array($model))
Derek Allard2067d1a2008-11-13 22:59:24 +0000239 {
Joel Limberg3cf174b2012-07-13 20:49:57 +0300240 foreach ($model as $class)
Derek Allard2067d1a2008-11-13 22:59:24 +0000241 {
Joel Limberg3cf174b2012-07-13 20:49:57 +0300242 $this->model($class);
Derek Allard2067d1a2008-11-13 22:59:24 +0000243 }
244 return;
245 }
246
Derek Jones32bf1862010-03-02 13:46:07 -0600247 $path = '';
Barry Mienydd671972010-10-04 16:33:58 +0200248
Derek Allard2067d1a2008-11-13 22:59:24 +0000249 // Is the model in a sub-folder? If so, parse out the filename and path.
Derek Jones32bf1862010-03-02 13:46:07 -0600250 if (($last_slash = strrpos($model, '/')) !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000251 {
Derek Jones32bf1862010-03-02 13:46:07 -0600252 // The path is in front of the last slash
Andrey Andreevd47baab2012-01-09 16:56:46 +0200253 $path = substr($model, 0, ++$last_slash);
Derek Jones32bf1862010-03-02 13:46:07 -0600254
255 // And the model name behind it
Andrey Andreevd47baab2012-01-09 16:56:46 +0200256 $model = substr($model, $last_slash);
Derek Allard2067d1a2008-11-13 22:59:24 +0000257 }
Barry Mienydd671972010-10-04 16:33:58 +0200258
Phil Sturgeon10d78f62012-06-04 14:41:53 -0500259 if (empty($name))
Derek Allard2067d1a2008-11-13 22:59:24 +0000260 {
261 $name = $model;
262 }
Barry Mienydd671972010-10-04 16:33:58 +0200263
Derek Allard2067d1a2008-11-13 22:59:24 +0000264 if (in_array($name, $this->_ci_models, TRUE))
265 {
266 return;
267 }
Barry Mienydd671972010-10-04 16:33:58 +0200268
Derek Allard2067d1a2008-11-13 22:59:24 +0000269 $CI =& get_instance();
270 if (isset($CI->$name))
271 {
272 show_error('The model name you are loading is the name of a resource that is already being used: '.$name);
273 }
Barry Mienydd671972010-10-04 16:33:58 +0200274
Derek Allard2067d1a2008-11-13 22:59:24 +0000275 $model = strtolower($model);
Derek Allard2067d1a2008-11-13 22:59:24 +0000276
Derek Jones32bf1862010-03-02 13:46:07 -0600277 foreach ($this->_ci_model_paths as $mod_path)
278 {
Greg Aker3a746652011-04-19 10:59:47 -0500279 if ( ! file_exists($mod_path.'models/'.$path.$model.'.php'))
Derek Jones32bf1862010-03-02 13:46:07 -0600280 {
281 continue;
282 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000283
Andrey Andreev94af3552012-03-26 23:10:42 +0300284 if ($db_conn !== FALSE && ! class_exists('CI_DB'))
Derek Jones32bf1862010-03-02 13:46:07 -0600285 {
286 if ($db_conn === TRUE)
Pascal Kriete287781e2010-11-10 15:43:49 -0500287 {
Derek Jones32bf1862010-03-02 13:46:07 -0600288 $db_conn = '';
Pascal Kriete287781e2010-11-10 15:43:49 -0500289 }
Derek Jones32bf1862010-03-02 13:46:07 -0600290
291 $CI->load->database($db_conn, FALSE, TRUE);
292 }
293
Greg Akerbce13482010-10-11 15:37:16 -0500294 if ( ! class_exists('CI_Model'))
Derek Jones32bf1862010-03-02 13:46:07 -0600295 {
296 load_class('Model', 'core');
297 }
298
Greg Aker3a746652011-04-19 10:59:47 -0500299 require_once($mod_path.'models/'.$path.$model.'.php');
Derek Jones32bf1862010-03-02 13:46:07 -0600300
301 $model = ucfirst($model);
Derek Jones32bf1862010-03-02 13:46:07 -0600302 $CI->$name = new $model();
Derek Jones32bf1862010-03-02 13:46:07 -0600303 $this->_ci_models[] = $name;
304 return;
305 }
Barry Mienydd671972010-10-04 16:33:58 +0200306
Derek Jones32bf1862010-03-02 13:46:07 -0600307 // couldn't find the model
308 show_error('Unable to locate the model you have specified: '.$model);
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 }
Barry Mienydd671972010-10-04 16:33:58 +0200310
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200312
Derek Allard2067d1a2008-11-13 22:59:24 +0000313 /**
314 * Database Loader
315 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300316 * @param mixed $params Database configuration options
317 * @param bool $return Whether to return the database object
318 * @param bool $query_builder Whether to enable Query Builder
319 * (overrides the configuration setting)
320 *
321 * @return void|object|bool Database object if $return is set to TRUE,
322 * FALSE on failure, void in any other case
Barry Mienydd671972010-10-04 16:33:58 +0200323 */
Jamie Rumbelow7efad202012-02-19 12:37:00 +0000324 public function database($params = '', $return = FALSE, $query_builder = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000325 {
326 // Grab the super object
327 $CI =& get_instance();
Barry Mienydd671972010-10-04 16:33:58 +0200328
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 // Do we even need to load the database class?
Andrey Andreev9d0ab042012-10-24 21:47:39 +0300330 if ($return === FALSE && $query_builder === NULL && isset($CI->db) && is_object($CI->db) && ! empty($CI->db->conn_id))
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 {
332 return FALSE;
Barry Mienydd671972010-10-04 16:33:58 +0200333 }
334
Greg Aker3a746652011-04-19 10:59:47 -0500335 require_once(BASEPATH.'database/DB.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000336
337 if ($return === TRUE)
338 {
Jamie Rumbelow7efad202012-02-19 12:37:00 +0000339 return DB($params, $query_builder);
Derek Allard2067d1a2008-11-13 22:59:24 +0000340 }
Barry Mienydd671972010-10-04 16:33:58 +0200341
Andrey Andreevd7297352012-01-07 22:53:14 +0200342 // Initialize the db variable. Needed to prevent
Derek Allard2067d1a2008-11-13 22:59:24 +0000343 // reference errors with some configurations
344 $CI->db = '';
Barry Mienydd671972010-10-04 16:33:58 +0200345
Derek Allard2067d1a2008-11-13 22:59:24 +0000346 // Load the DB class
Jamie Rumbelow7efad202012-02-19 12:37:00 +0000347 $CI->db =& DB($params, $query_builder);
Derek Allard2067d1a2008-11-13 22:59:24 +0000348 }
Barry Mienydd671972010-10-04 16:33:58 +0200349
Derek Allard2067d1a2008-11-13 22:59:24 +0000350 // --------------------------------------------------------------------
351
352 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300353 * Load the Database Utilities Class
Derek Allard2067d1a2008-11-13 22:59:24 +0000354 *
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200355 * @param object $db Database object
356 * @param bool $return Whether to return the DB Forge class object or not
357 * @return void|object
Barry Mienydd671972010-10-04 16:33:58 +0200358 */
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200359 public function dbutil($db = NULL, $return = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000360 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000361 $CI =& get_instance();
362
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200363 if ( ! is_object($db) OR ! ($db instanceof CI_DB))
364 {
365 class_exists('CI_DB', FALSE) OR $this->database();
366 $db =& $CI->db;
367 }
Barry Mienydd671972010-10-04 16:33:58 +0200368
Greg Aker3a746652011-04-19 10:59:47 -0500369 require_once(BASEPATH.'database/DB_utility.php');
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200370 require_once(BASEPATH.'database/drivers/'.$db->dbdriver.'/'.$db->dbdriver.'_utility.php');
371 $class = 'CI_DB_'.$db->dbdriver.'_utility';
Derek Allard2067d1a2008-11-13 22:59:24 +0000372
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200373 if ($return === TRUE)
374 {
375 return new $class($db);
376 }
377
378 $CI->dbutil = new $class($db);
Derek Allard2067d1a2008-11-13 22:59:24 +0000379 }
Barry Mienydd671972010-10-04 16:33:58 +0200380
Derek Allard2067d1a2008-11-13 22:59:24 +0000381 // --------------------------------------------------------------------
382
383 /**
384 * Load the Database Forge Class
385 *
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200386 * @param object $db Database object
387 * @param bool $return Whether to return the DB Forge class object or not
388 * @return void|object
Barry Mienydd671972010-10-04 16:33:58 +0200389 */
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200390 public function dbforge($db = NULL, $return = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000391 {
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200392 $CI =& get_instance();
393 if ( ! is_object($db) OR ! ($db instanceof CI_DB))
Derek Allard2067d1a2008-11-13 22:59:24 +0000394 {
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200395 class_exists('CI_DB', FALSE) OR $this->database();
396 $db =& $CI->db;
Derek Allard2067d1a2008-11-13 22:59:24 +0000397 }
Barry Mienydd671972010-10-04 16:33:58 +0200398
Greg Aker3a746652011-04-19 10:59:47 -0500399 require_once(BASEPATH.'database/DB_forge.php');
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200400 require_once(BASEPATH.'database/drivers/'.$db->dbdriver.'/'.$db->dbdriver.'_forge.php');
Andrey Andreeva287a342012-11-05 23:19:59 +0200401
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200402 if ( ! empty($db->subdriver))
Andrey Andreeva287a342012-11-05 23:19:59 +0200403 {
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200404 $driver_path = BASEPATH.'database/drivers/'.$db->dbdriver.'/subdrivers/'.$db->dbdriver.'_'.$db->subdriver.'_forge.php';
Andrey Andreeva287a342012-11-05 23:19:59 +0200405 if (file_exists($driver_path))
406 {
407 require_once($driver_path);
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200408 $class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge';
Andrey Andreeva287a342012-11-05 23:19:59 +0200409 }
410 }
411 else
412 {
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200413 $class = 'CI_DB_'.$db->dbdriver.'_forge';
Andrey Andreeva287a342012-11-05 23:19:59 +0200414 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000415
Andrey Andreeveaa60c72012-11-06 01:11:22 +0200416 if ($return === TRUE)
417 {
418 return new $class($db);
419 }
420
421 $CI->dbforge = new $class($db);
Derek Allard2067d1a2008-11-13 22:59:24 +0000422 }
Barry Mienydd671972010-10-04 16:33:58 +0200423
Derek Allard2067d1a2008-11-13 22:59:24 +0000424 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200425
Derek Allard2067d1a2008-11-13 22:59:24 +0000426 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300427 * View Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000428 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300429 * Loads "view" files.
Derek Allard2067d1a2008-11-13 22:59:24 +0000430 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300431 * @param string $view View name
432 * @param array $vars An associative array of data
433 * to be extracted for use in the view
434 * @param bool $return Whether to return the view output
435 * or leave it to the Output class
Derek Allard2067d1a2008-11-13 22:59:24 +0000436 * @return void
437 */
Greg Akerf5c84022011-04-19 17:13:03 -0500438 public function view($view, $vars = array(), $return = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000439 {
440 return $this->_ci_load(array('_ci_view' => $view, '_ci_vars' => $this->_ci_object_to_array($vars), '_ci_return' => $return));
441 }
Barry Mienydd671972010-10-04 16:33:58 +0200442
Derek Allard2067d1a2008-11-13 22:59:24 +0000443 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200444
Derek Allard2067d1a2008-11-13 22:59:24 +0000445 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300446 * Generic File Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000447 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300448 * @param string $path File path
449 * @param bool $return Whether to return the file output
450 * @return void|string
Derek Allard2067d1a2008-11-13 22:59:24 +0000451 */
Greg Akerf5c84022011-04-19 17:13:03 -0500452 public function file($path, $return = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000453 {
454 return $this->_ci_load(array('_ci_path' => $path, '_ci_return' => $return));
455 }
Barry Mienydd671972010-10-04 16:33:58 +0200456
Derek Allard2067d1a2008-11-13 22:59:24 +0000457 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200458
Derek Allard2067d1a2008-11-13 22:59:24 +0000459 /**
460 * Set Variables
461 *
462 * Once variables are set they become available within
463 * the controller class and its "view" files.
464 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300465 * @param array|object|string $vars
466 * An associative array or object containing values
467 * to be set, or a value's name if string
468 * @param string $val Value to set, only used if $vars is a string
Derek Allard2067d1a2008-11-13 22:59:24 +0000469 * @return void
470 */
Greg Akerf5c84022011-04-19 17:13:03 -0500471 public function vars($vars = array(), $val = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000472 {
Alex Bilbieed944a32012-06-02 11:07:47 +0100473 if ($val !== '' && is_string($vars))
Derek Allard2067d1a2008-11-13 22:59:24 +0000474 {
475 $vars = array($vars => $val);
476 }
Barry Mienydd671972010-10-04 16:33:58 +0200477
Derek Allard2067d1a2008-11-13 22:59:24 +0000478 $vars = $this->_ci_object_to_array($vars);
Barry Mienydd671972010-10-04 16:33:58 +0200479
Andrey Andreev94af3552012-03-26 23:10:42 +0300480 if (is_array($vars) && count($vars) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000481 {
482 foreach ($vars as $key => $val)
483 {
484 $this->_ci_cached_vars[$key] = $val;
485 }
486 }
487 }
Barry Mienydd671972010-10-04 16:33:58 +0200488
Derek Allard2067d1a2008-11-13 22:59:24 +0000489 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200490
Derek Allard2067d1a2008-11-13 22:59:24 +0000491 /**
Phil Sturgeon8731f642011-07-22 16:11:34 -0600492 * Get Variable
493 *
494 * Check if a variable is set and retrieve it.
495 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300496 * @param string $key Variable name
497 * @return mixed The variable or NULL if not found
Phil Sturgeon8731f642011-07-22 16:11:34 -0600498 */
499 public function get_var($key)
500 {
501 return isset($this->_ci_cached_vars[$key]) ? $this->_ci_cached_vars[$key] : NULL;
502 }
503
504 // --------------------------------------------------------------------
505
506 /**
Shane Pearson81dd2232011-11-18 20:49:35 -0600507 * Get Variables
508 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300509 * Retrieves all loaded variables.
Shane Pearson81dd2232011-11-18 20:49:35 -0600510 *
511 * @return array
512 */
513 public function get_vars()
514 {
515 return $this->_ci_cached_vars;
516 }
517
518 // --------------------------------------------------------------------
519
520 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300521 * Helper Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300523 * @param string|string[] $helpers Helper name(s)
Derek Allard2067d1a2008-11-13 22:59:24 +0000524 * @return void
525 */
Greg Akerf5c84022011-04-19 17:13:03 -0500526 public function helper($helpers = array())
Barry Mienydd671972010-10-04 16:33:58 +0200527 {
Derek Jones32bf1862010-03-02 13:46:07 -0600528 foreach ($this->_ci_prep_filename($helpers, '_helper') as $helper)
Barry Mienydd671972010-10-04 16:33:58 +0200529 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000530 if (isset($this->_ci_helpers[$helper]))
531 {
532 continue;
533 }
Derek Jones32bf1862010-03-02 13:46:07 -0600534
Greg Aker3a746652011-04-19 10:59:47 -0500535 $ext_helper = APPPATH.'helpers/'.config_item('subclass_prefix').$helper.'.php';
Derek Allard2067d1a2008-11-13 22:59:24 +0000536
Barry Mienydd671972010-10-04 16:33:58 +0200537 // Is this a helper extension request?
Derek Allard2067d1a2008-11-13 22:59:24 +0000538 if (file_exists($ext_helper))
539 {
Greg Aker3a746652011-04-19 10:59:47 -0500540 $base_helper = BASEPATH.'helpers/'.$helper.'.php';
Barry Mienydd671972010-10-04 16:33:58 +0200541
Derek Allard2067d1a2008-11-13 22:59:24 +0000542 if ( ! file_exists($base_helper))
543 {
Greg Aker3a746652011-04-19 10:59:47 -0500544 show_error('Unable to load the requested file: helpers/'.$helper.'.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000545 }
Barry Mienydd671972010-10-04 16:33:58 +0200546
Derek Allard2067d1a2008-11-13 22:59:24 +0000547 include_once($ext_helper);
548 include_once($base_helper);
Barry Mienydd671972010-10-04 16:33:58 +0200549
Derek Jones32bf1862010-03-02 13:46:07 -0600550 $this->_ci_helpers[$helper] = TRUE;
551 log_message('debug', 'Helper loaded: '.$helper);
552 continue;
Derek Allard2067d1a2008-11-13 22:59:24 +0000553 }
Barry Mienydd671972010-10-04 16:33:58 +0200554
Derek Jones32bf1862010-03-02 13:46:07 -0600555 // Try to load the helper
556 foreach ($this->_ci_helper_paths as $path)
557 {
Greg Aker3a746652011-04-19 10:59:47 -0500558 if (file_exists($path.'helpers/'.$helper.'.php'))
Barry Mienydd671972010-10-04 16:33:58 +0200559 {
Greg Aker3a746652011-04-19 10:59:47 -0500560 include_once($path.'helpers/'.$helper.'.php');
Derek Jones32bf1862010-03-02 13:46:07 -0600561
562 $this->_ci_helpers[$helper] = TRUE;
Barry Mienydd671972010-10-04 16:33:58 +0200563 log_message('debug', 'Helper loaded: '.$helper);
Derek Jones32bf1862010-03-02 13:46:07 -0600564 break;
Derek Allard2067d1a2008-11-13 22:59:24 +0000565 }
566 }
567
Derek Jones32bf1862010-03-02 13:46:07 -0600568 // unable to load the helper
569 if ( ! isset($this->_ci_helpers[$helper]))
570 {
Greg Aker3a746652011-04-19 10:59:47 -0500571 show_error('Unable to load the requested file: helpers/'.$helper.'.php');
Derek Jones32bf1862010-03-02 13:46:07 -0600572 }
Barry Mienydd671972010-10-04 16:33:58 +0200573 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000574 }
Barry Mienydd671972010-10-04 16:33:58 +0200575
Derek Allard2067d1a2008-11-13 22:59:24 +0000576 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200577
Derek Allard2067d1a2008-11-13 22:59:24 +0000578 /**
579 * Load Helpers
580 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300581 * An alias for the helper() method in case the developer has
582 * written the plural form of it.
Derek Allard2067d1a2008-11-13 22:59:24 +0000583 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300584 * @uses CI_Loader::helper()
585 * @param string|string[] $helpers Helper name(s)
Derek Allard2067d1a2008-11-13 22:59:24 +0000586 * @return void
587 */
Greg Akerf5c84022011-04-19 17:13:03 -0500588 public function helpers($helpers = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000589 {
590 $this->helper($helpers);
591 }
Barry Mienydd671972010-10-04 16:33:58 +0200592
Derek Allard2067d1a2008-11-13 22:59:24 +0000593 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200594
Derek Allard2067d1a2008-11-13 22:59:24 +0000595 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300596 * Language Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000597 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300598 * Loads language files.
599 *
600 * @param string|string[] $files List of language file names to load
601 * @param string Language name
Derek Allard2067d1a2008-11-13 22:59:24 +0000602 * @return void
603 */
Andrey Andreeved4b2582012-10-27 17:46:52 +0300604 public function language($files = array(), $lang = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000605 {
606 $CI =& get_instance();
607
Andrey Andreeved4b2582012-10-27 17:46:52 +0300608 is_array($files) OR $files = array($files);
Derek Allard2067d1a2008-11-13 22:59:24 +0000609
Andrey Andreeved4b2582012-10-27 17:46:52 +0300610 foreach ($files as $langfile)
Barry Mienydd671972010-10-04 16:33:58 +0200611 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000612 $CI->lang->load($langfile, $lang);
613 }
614 }
Barry Mienydd671972010-10-04 16:33:58 +0200615
Derek Allard2067d1a2008-11-13 22:59:24 +0000616 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200617
Derek Allard2067d1a2008-11-13 22:59:24 +0000618 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300619 * Config Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000620 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300621 * Loads a config file (an alias for CI_Config::load()).
622 *
623 * @uses CI_Config::load()
624 * @param string $file Configuration file name
625 * @param bool $use_sections Whether configuration values should be loaded into their own section
626 * @param bool $fail_gracefully Whether to just return FALSE or display an error message
627 * @return bool TRUE if the file was loaded correctly or FALSE on failure
Derek Allard2067d1a2008-11-13 22:59:24 +0000628 */
Greg Akerf5c84022011-04-19 17:13:03 -0500629 public function config($file = '', $use_sections = FALSE, $fail_gracefully = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200630 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000631 $CI =& get_instance();
Andrey Andreeved4b2582012-10-27 17:46:52 +0300632 return $CI->config->load($file, $use_sections, $fail_gracefully);
Derek Allard2067d1a2008-11-13 22:59:24 +0000633 }
634
635 // --------------------------------------------------------------------
Derek Jones32bf1862010-03-02 13:46:07 -0600636
Derek Allard2067d1a2008-11-13 22:59:24 +0000637 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300638 * Driver Loader
Derek Jones8dca0412010-03-05 13:01:44 -0600639 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300640 * Loads a driver library.
Derek Jones8dca0412010-03-05 13:01:44 -0600641 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300642 * @param string|string[] $library Driver name(s)
643 * @param array $params Optional parameters to pass to the driver
644 * @param string $object_name An optional object name to assign to
645 *
646 * @return void|object|bool Object or FALSE on failure if $library is a string
647 * and $object_name is set. void otherwise.
Derek Jones8dca0412010-03-05 13:01:44 -0600648 */
Greg Akerf5c84022011-04-19 17:13:03 -0500649 public function driver($library = '', $params = NULL, $object_name = NULL)
Derek Jones8dca0412010-03-05 13:01:44 -0600650 {
Christopher Guineyb54d3552012-03-10 08:38:10 -0800651 if (is_array($library))
Christopher Guiney9929d6f2012-03-09 19:53:24 -0800652 {
Christopher Guineyb54d3552012-03-10 08:38:10 -0800653 foreach ($library as $driver)
Christopher Guiney9929d6f2012-03-09 19:53:24 -0800654 {
655 $this->driver($driver);
656 }
dchill420fc3be52012-08-27 20:54:23 -0400657 return;
Christopher Guiney9929d6f2012-03-09 19:53:24 -0800658 }
659
Alex Bilbieed944a32012-06-02 11:07:47 +0100660 if ($library === '')
Tom Klingenberg6a15b2d2011-10-07 20:03:30 +0200661 {
662 return FALSE;
663 }
664
Derek Jonesd5e0cb52010-03-09 20:20:46 -0600665 // We can save the loader some time since Drivers will *always* be in a subfolder,
666 // and typically identically named to the library
667 if ( ! strpos($library, '/'))
668 {
Greg Akerd25e66a2010-03-28 01:07:09 -0500669 $library = ucfirst($library).'/'.$library;
Derek Jones8dca0412010-03-05 13:01:44 -0600670 }
Barry Mienydd671972010-10-04 16:33:58 +0200671
Derek Jones8dca0412010-03-05 13:01:44 -0600672 return $this->library($library, $params, $object_name);
673 }
674
675 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200676
Derek Jones8dca0412010-03-05 13:01:44 -0600677 /**
Derek Jones32bf1862010-03-02 13:46:07 -0600678 * Add Package Path
Derek Allard2067d1a2008-11-13 22:59:24 +0000679 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300680 * Prepends a parent path to the library, model, helper and config
681 * path arrays.
Derek Allard2067d1a2008-11-13 22:59:24 +0000682 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300683 * @see CI_Loader::$_ci_library_paths
684 * @see CI_Loader::$_ci_model_paths
685 * @see CI_Loader::$_ci_helper_paths
686 * @see CI_Config::$_config_paths
687 *
688 * @param string $path Path to add
689 * @param bool $view_cascade (default: TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000690 * @return void
Derek Jones32bf1862010-03-02 13:46:07 -0600691 */
Andrey Andreevcce91802012-06-12 13:25:31 +0300692 public function add_package_path($path, $view_cascade = TRUE)
Derek Jones32bf1862010-03-02 13:46:07 -0600693 {
Pascal Kriete6b6c2742010-11-09 13:12:22 -0500694 $path = rtrim($path, '/').'/';
David Behlercda768a2011-08-14 23:52:48 +0200695
Derek Jones32bf1862010-03-02 13:46:07 -0600696 array_unshift($this->_ci_library_paths, $path);
697 array_unshift($this->_ci_model_paths, $path);
698 array_unshift($this->_ci_helper_paths, $path);
Barry Mienydd671972010-10-04 16:33:58 +0200699
Greg Akerf5c84022011-04-19 17:13:03 -0500700 $this->_ci_view_paths = array($path.'views/' => $view_cascade) + $this->_ci_view_paths;
701
Derek Jones32bf1862010-03-02 13:46:07 -0600702 // Add config file path
703 $config =& $this->_ci_get_component('config');
Korri3684d342012-04-17 00:35:08 -0400704 array_push($config->_config_paths, $path);
Derek Allard2067d1a2008-11-13 22:59:24 +0000705 }
706
707 // --------------------------------------------------------------------
Derek Jones32bf1862010-03-02 13:46:07 -0600708
709 /**
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000710 * Get Package Paths
711 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300712 * Return a list of all package paths.
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000713 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300714 * @param bool $include_base Whether to include BASEPATH (default: TRUE)
715 * @return array
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000716 */
Greg Akerf5c84022011-04-19 17:13:03 -0500717 public function get_package_paths($include_base = FALSE)
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000718 {
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300719 return ($include_base === TRUE) ? $this->_ci_library_paths : $this->_ci_model_paths;
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000720 }
721
722 // --------------------------------------------------------------------
723
724 /**
Derek Jones32bf1862010-03-02 13:46:07 -0600725 * Remove Package Path
726 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300727 * Remove a path from the library, model, helper and/or config
728 * path arrays if it exists. If no path is provided, the most recently
729 * added path will be removed removed.
Derek Jones32bf1862010-03-02 13:46:07 -0600730 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300731 * @param string $path Path to remove
Andrey Andreev94af3552012-03-26 23:10:42 +0300732 * @return void
Derek Jones32bf1862010-03-02 13:46:07 -0600733 */
Andrey Andreeved4b2582012-10-27 17:46:52 +0300734 public function remove_package_path($path = '')
Derek Jones32bf1862010-03-02 13:46:07 -0600735 {
736 $config =& $this->_ci_get_component('config');
Barry Mienydd671972010-10-04 16:33:58 +0200737
Alex Bilbieed944a32012-06-02 11:07:47 +0100738 if ($path === '')
Derek Jones32bf1862010-03-02 13:46:07 -0600739 {
Andrey Andreevd7297352012-01-07 22:53:14 +0200740 array_shift($this->_ci_library_paths);
741 array_shift($this->_ci_model_paths);
742 array_shift($this->_ci_helper_paths);
743 array_shift($this->_ci_view_paths);
Korri3684d342012-04-17 00:35:08 -0400744 array_pop($config->_config_paths);
Derek Jones32bf1862010-03-02 13:46:07 -0600745 }
746 else
747 {
Pascal Kriete6b6c2742010-11-09 13:12:22 -0500748 $path = rtrim($path, '/').'/';
Derek Jones32bf1862010-03-02 13:46:07 -0600749 foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var)
750 {
751 if (($key = array_search($path, $this->{$var})) !== FALSE)
752 {
753 unset($this->{$var}[$key]);
754 }
755 }
David Behlercda768a2011-08-14 23:52:48 +0200756
Greg Akerf5c84022011-04-19 17:13:03 -0500757 if (isset($this->_ci_view_paths[$path.'views/']))
758 {
759 unset($this->_ci_view_paths[$path.'views/']);
760 }
Barry Mienydd671972010-10-04 16:33:58 +0200761
Derek Jones32bf1862010-03-02 13:46:07 -0600762 if (($key = array_search($path, $config->_config_paths)) !== FALSE)
763 {
764 unset($config->_config_paths[$key]);
765 }
766 }
Barry Mienydd671972010-10-04 16:33:58 +0200767
Derek Jones32bf1862010-03-02 13:46:07 -0600768 // make sure the application default paths are still in the array
769 $this->_ci_library_paths = array_unique(array_merge($this->_ci_library_paths, array(APPPATH, BASEPATH)));
770 $this->_ci_helper_paths = array_unique(array_merge($this->_ci_helper_paths, array(APPPATH, BASEPATH)));
771 $this->_ci_model_paths = array_unique(array_merge($this->_ci_model_paths, array(APPPATH)));
Greg Akerf5c84022011-04-19 17:13:03 -0500772 $this->_ci_view_paths = array_merge($this->_ci_view_paths, array(APPPATH.'views/' => TRUE));
Derek Jones32bf1862010-03-02 13:46:07 -0600773 $config->_config_paths = array_unique(array_merge($config->_config_paths, array(APPPATH)));
774 }
775
776 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200777
Derek Allard2067d1a2008-11-13 22:59:24 +0000778 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300779 * Internal CI Data Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000780 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300781 * Used to load views and files.
782 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000783 * Variables are prefixed with _ci_ to avoid symbol collision with
Andrey Andreeved4b2582012-10-27 17:46:52 +0300784 * variables made available to view files.
Derek Allard2067d1a2008-11-13 22:59:24 +0000785 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300786 * @used-by CI_Loader::view()
787 * @used-by CI_Loader::file()
788 * @param array $_ci_data Data to load
Derek Allard2067d1a2008-11-13 22:59:24 +0000789 * @return void
790 */
Greg Akerf5c84022011-04-19 17:13:03 -0500791 protected function _ci_load($_ci_data)
Derek Allard2067d1a2008-11-13 22:59:24 +0000792 {
793 // Set the default data variables
794 foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $_ci_val)
795 {
Andrey Andreev94af3552012-03-26 23:10:42 +0300796 $$_ci_val = isset($_ci_data[$_ci_val]) ? $_ci_data[$_ci_val] : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000797 }
David Behlercda768a2011-08-14 23:52:48 +0200798
Greg Akerf5c84022011-04-19 17:13:03 -0500799 $file_exists = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000800
801 // Set the path to the requested file
Alex Bilbie40bd2a72012-06-02 16:04:15 +0100802 if (is_string($_ci_path) && $_ci_path !== '')
Greg Aker8807be32011-04-21 13:06:15 -0500803 {
804 $_ci_x = explode('/', $_ci_path);
805 $_ci_file = end($_ci_x);
806 }
807 else
Derek Allard2067d1a2008-11-13 22:59:24 +0000808 {
809 $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);
Alex Bilbieed944a32012-06-02 11:07:47 +0100810 $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view;
Greg Akerf5c84022011-04-19 17:13:03 -0500811
Joe McFrederick64f470b2012-08-18 12:29:56 -0400812 foreach ($this->_ci_view_paths as $_ci_view_file => $cascade)
Greg Akerf5c84022011-04-19 17:13:03 -0500813 {
Joe McFrederick64f470b2012-08-18 12:29:56 -0400814 if (file_exists($_ci_view_file.$_ci_file))
Greg Akerf5c84022011-04-19 17:13:03 -0500815 {
Joe McFrederick64f470b2012-08-18 12:29:56 -0400816 $_ci_path = $_ci_view_file.$_ci_file;
Greg Akerf5c84022011-04-19 17:13:03 -0500817 $file_exists = TRUE;
818 break;
819 }
David Behlercda768a2011-08-14 23:52:48 +0200820
Greg Akerf5c84022011-04-19 17:13:03 -0500821 if ( ! $cascade)
822 {
823 break;
David Behlercda768a2011-08-14 23:52:48 +0200824 }
Greg Akerf5c84022011-04-19 17:13:03 -0500825 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000826 }
Barry Mienydd671972010-10-04 16:33:58 +0200827
Greg Akerf5c84022011-04-19 17:13:03 -0500828 if ( ! $file_exists && ! file_exists($_ci_path))
Derek Allard2067d1a2008-11-13 22:59:24 +0000829 {
830 show_error('Unable to load the requested file: '.$_ci_file);
831 }
Barry Mienydd671972010-10-04 16:33:58 +0200832
Derek Allard2067d1a2008-11-13 22:59:24 +0000833 // This allows anything loaded using $this->load (views, files, etc.)
834 // to become accessible from within the Controller and Model functions.
Pascal Kriete89ace432010-11-10 15:49:10 -0500835 $_ci_CI =& get_instance();
836 foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)
Derek Allard2067d1a2008-11-13 22:59:24 +0000837 {
Pascal Kriete89ace432010-11-10 15:49:10 -0500838 if ( ! isset($this->$_ci_key))
Derek Allard2067d1a2008-11-13 22:59:24 +0000839 {
Pascal Kriete89ace432010-11-10 15:49:10 -0500840 $this->$_ci_key =& $_ci_CI->$_ci_key;
Derek Allard2067d1a2008-11-13 22:59:24 +0000841 }
842 }
843
844 /*
845 * Extract and cache variables
846 *
vlakoff02506182012-07-03 07:28:50 +0200847 * You can either set variables using the dedicated $this->load->vars()
Derek Allard2067d1a2008-11-13 22:59:24 +0000848 * function or via the second parameter of this function. We'll merge
849 * the two types and cache them so that views that are embedded within
850 * other views can have access to these variables.
Barry Mienydd671972010-10-04 16:33:58 +0200851 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000852 if (is_array($_ci_vars))
853 {
854 $this->_ci_cached_vars = array_merge($this->_ci_cached_vars, $_ci_vars);
855 }
856 extract($this->_ci_cached_vars);
Barry Mienydd671972010-10-04 16:33:58 +0200857
Derek Allard2067d1a2008-11-13 22:59:24 +0000858 /*
859 * Buffer the output
860 *
861 * We buffer the output for two reasons:
862 * 1. Speed. You get a significant speed boost.
Andrey Andreevd7297352012-01-07 22:53:14 +0200863 * 2. So that the final rendered template can be post-processed by
dchill425628ba02012-08-08 12:05:45 -0400864 * the output class. Why do we need post processing? For one thing,
865 * in order to show the elapsed page load time. Unless we can
866 * intercept the content right before it's sent to the browser and
867 * then stop the timer it won't be accurate.
Derek Allard2067d1a2008-11-13 22:59:24 +0000868 */
869 ob_start();
Barry Mienydd671972010-10-04 16:33:58 +0200870
Derek Allard2067d1a2008-11-13 22:59:24 +0000871 // If the PHP installation does not support short tags we'll
872 // do a little string replacement, changing the short tags
873 // to standard PHP echo statements.
Alex Bilbieed944a32012-06-02 11:07:47 +0100874 if ( ! is_php('5.4') && (bool) @ini_get('short_open_tag') === FALSE && config_item('rewrite_short_tags') === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000875 {
Andrey Andreevd47baab2012-01-09 16:56:46 +0200876 echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path))));
Derek Allard2067d1a2008-11-13 22:59:24 +0000877 }
878 else
879 {
880 include($_ci_path); // include() vs include_once() allows for multiple views with the same name
881 }
Barry Mienydd671972010-10-04 16:33:58 +0200882
Derek Allard2067d1a2008-11-13 22:59:24 +0000883 log_message('debug', 'File loaded: '.$_ci_path);
Barry Mienydd671972010-10-04 16:33:58 +0200884
Derek Allard2067d1a2008-11-13 22:59:24 +0000885 // Return the file data if requested
886 if ($_ci_return === TRUE)
Barry Mienydd671972010-10-04 16:33:58 +0200887 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000888 $buffer = ob_get_contents();
889 @ob_end_clean();
890 return $buffer;
891 }
892
893 /*
894 * Flush the buffer... or buff the flusher?
895 *
896 * In order to permit views to be nested within
897 * other views, we need to flush the content back out whenever
898 * we are beyond the first level of output buffering so that
899 * it can be seen and included properly by the first included
900 * template and any subsequent ones. Oy!
Barry Mienydd671972010-10-04 16:33:58 +0200901 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000902 if (ob_get_level() > $this->_ci_ob_level + 1)
903 {
904 ob_end_flush();
905 }
906 else
907 {
Greg Aker22f1a632010-11-10 15:34:35 -0600908 $_ci_CI->output->append_output(ob_get_contents());
Derek Allard2067d1a2008-11-13 22:59:24 +0000909 @ob_end_clean();
910 }
911 }
912
913 // --------------------------------------------------------------------
914
915 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300916 * Internal CI Class Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000917 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300918 * @used-by CI_Loader::library()
919 * @uses CI_Loader::_ci_init_class()
Derek Allard2067d1a2008-11-13 22:59:24 +0000920 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300921 * @param string $class Class name to load
922 * @param mixed $params Optional parameters to pass to the class constructor
923 * @param string $object_name Optional object name to assign to
Barry Mienydd671972010-10-04 16:33:58 +0200924 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +0000925 */
Greg Akerf5c84022011-04-19 17:13:03 -0500926 protected function _ci_load_class($class, $params = NULL, $object_name = NULL)
Barry Mienydd671972010-10-04 16:33:58 +0200927 {
928 // Get the class name, and while we're at it trim any slashes.
929 // The directory path can be included as part of the class name,
Derek Allard2067d1a2008-11-13 22:59:24 +0000930 // but we don't want a leading slash
Greg Aker3a746652011-04-19 10:59:47 -0500931 $class = str_replace('.php', '', trim($class, '/'));
Barry Mienydd671972010-10-04 16:33:58 +0200932
Derek Allard2067d1a2008-11-13 22:59:24 +0000933 // Was the path included with the class name?
934 // We look for a slash to determine this
935 $subdir = '';
Derek Jones32bf1862010-03-02 13:46:07 -0600936 if (($last_slash = strrpos($class, '/')) !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000937 {
Derek Jones32bf1862010-03-02 13:46:07 -0600938 // Extract the path
Andrey Andreevd7297352012-01-07 22:53:14 +0200939 $subdir = substr($class, 0, ++$last_slash);
Barry Mienydd671972010-10-04 16:33:58 +0200940
Derek Jones32bf1862010-03-02 13:46:07 -0600941 // Get the filename from the path
Andrey Andreevd7297352012-01-07 22:53:14 +0200942 $class = substr($class, $last_slash);
dchill425628ba02012-08-08 12:05:45 -0400943
944 // Check for match and driver base class
dchill42aee92652012-08-26 21:45:35 -0400945 if (strtolower(trim($subdir, '/')) == strtolower($class) && ! class_exists('CI_Driver_Library'))
dchill425628ba02012-08-08 12:05:45 -0400946 {
947 // We aren't instantiating an object here, just making the base class available
948 require BASEPATH.'libraries/Driver.php';
949 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000950 }
951
952 // We'll test for both lowercase and capitalized versions of the file name
953 foreach (array(ucfirst($class), strtolower($class)) as $class)
954 {
Greg Aker3a746652011-04-19 10:59:47 -0500955 $subclass = APPPATH.'libraries/'.$subdir.config_item('subclass_prefix').$class.'.php';
Derek Allard2067d1a2008-11-13 22:59:24 +0000956
Barry Mienydd671972010-10-04 16:33:58 +0200957 // Is this a class extension request?
Derek Allard2067d1a2008-11-13 22:59:24 +0000958 if (file_exists($subclass))
959 {
Greg Aker3a746652011-04-19 10:59:47 -0500960 $baseclass = BASEPATH.'libraries/'.ucfirst($class).'.php';
Barry Mienydd671972010-10-04 16:33:58 +0200961
Derek Allard2067d1a2008-11-13 22:59:24 +0000962 if ( ! file_exists($baseclass))
963 {
Andrey Andreevd7297352012-01-07 22:53:14 +0200964 log_message('error', 'Unable to load the requested class: '.$class);
965 show_error('Unable to load the requested class: '.$class);
Derek Allard2067d1a2008-11-13 22:59:24 +0000966 }
967
Andrey Andreevd7297352012-01-07 22:53:14 +0200968 // Safety: Was the class already loaded by a previous call?
Derek Allard2067d1a2008-11-13 22:59:24 +0000969 if (in_array($subclass, $this->_ci_loaded_files))
970 {
971 // Before we deem this to be a duplicate request, let's see
Andrey Andreevd7297352012-01-07 22:53:14 +0200972 // if a custom object name is being supplied. If so, we'll
Derek Allard2067d1a2008-11-13 22:59:24 +0000973 // return a new instance of the object
974 if ( ! is_null($object_name))
975 {
976 $CI =& get_instance();
977 if ( ! isset($CI->$object_name))
978 {
Barry Mienydd671972010-10-04 16:33:58 +0200979 return $this->_ci_init_class($class, config_item('subclass_prefix'), $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000980 }
981 }
Barry Mienydd671972010-10-04 16:33:58 +0200982
Derek Allard2067d1a2008-11-13 22:59:24 +0000983 $is_duplicate = TRUE;
Andrey Andreevd7297352012-01-07 22:53:14 +0200984 log_message('debug', $class.' class already loaded. Second attempt ignored.');
Derek Allard2067d1a2008-11-13 22:59:24 +0000985 return;
986 }
Barry Mienydd671972010-10-04 16:33:58 +0200987
988 include_once($baseclass);
Derek Allard2067d1a2008-11-13 22:59:24 +0000989 include_once($subclass);
990 $this->_ci_loaded_files[] = $subclass;
Barry Mienydd671972010-10-04 16:33:58 +0200991
992 return $this->_ci_init_class($class, config_item('subclass_prefix'), $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000993 }
Barry Mienydd671972010-10-04 16:33:58 +0200994
Derek Allard2067d1a2008-11-13 22:59:24 +0000995 // Lets search for the requested library file and load it.
Derek Jones32bf1862010-03-02 13:46:07 -0600996 $is_duplicate = FALSE;
997 foreach ($this->_ci_library_paths as $path)
Derek Allard2067d1a2008-11-13 22:59:24 +0000998 {
Greg Aker3a746652011-04-19 10:59:47 -0500999 $filepath = $path.'libraries/'.$subdir.$class.'.php';
Derek Jones32bf1862010-03-02 13:46:07 -06001000
Andrey Andreevd7297352012-01-07 22:53:14 +02001001 // Does the file exist? No? Bummer...
Derek Allard2067d1a2008-11-13 22:59:24 +00001002 if ( ! file_exists($filepath))
1003 {
1004 continue;
1005 }
Barry Mienydd671972010-10-04 16:33:58 +02001006
Andrey Andreevd7297352012-01-07 22:53:14 +02001007 // Safety: Was the class already loaded by a previous call?
Derek Allard2067d1a2008-11-13 22:59:24 +00001008 if (in_array($filepath, $this->_ci_loaded_files))
1009 {
1010 // Before we deem this to be a duplicate request, let's see
Andrey Andreevd7297352012-01-07 22:53:14 +02001011 // if a custom object name is being supplied. If so, we'll
Derek Allard2067d1a2008-11-13 22:59:24 +00001012 // return a new instance of the object
1013 if ( ! is_null($object_name))
1014 {
1015 $CI =& get_instance();
1016 if ( ! isset($CI->$object_name))
1017 {
1018 return $this->_ci_init_class($class, '', $params, $object_name);
1019 }
1020 }
Barry Mienydd671972010-10-04 16:33:58 +02001021
Derek Allard2067d1a2008-11-13 22:59:24 +00001022 $is_duplicate = TRUE;
Andrey Andreevd7297352012-01-07 22:53:14 +02001023 log_message('debug', $class.' class already loaded. Second attempt ignored.');
Derek Allard2067d1a2008-11-13 22:59:24 +00001024 return;
1025 }
Barry Mienydd671972010-10-04 16:33:58 +02001026
Derek Allard2067d1a2008-11-13 22:59:24 +00001027 include_once($filepath);
1028 $this->_ci_loaded_files[] = $filepath;
Barry Mienydd671972010-10-04 16:33:58 +02001029 return $this->_ci_init_class($class, '', $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +00001030 }
1031 } // END FOREACH
1032
Andrey Andreevd7297352012-01-07 22:53:14 +02001033 // One last attempt. Maybe the library is in a subdirectory, but it wasn't specified?
Alex Bilbieed944a32012-06-02 11:07:47 +01001034 if ($subdir === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001035 {
1036 $path = strtolower($class).'/'.$class;
dchill420fc3be52012-08-27 20:54:23 -04001037 return $this->_ci_load_class($path, $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +00001038 }
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001039 elseif (ucfirst($subdir) != $subdir)
dchill42aee92652012-08-26 21:45:35 -04001040 {
1041 // Lowercase subdir failed - retry capitalized
1042 $path = ucfirst($subdir).$class;
dchill420fc3be52012-08-27 20:54:23 -04001043 return $this->_ci_load_class($path, $params, $object_name);
dchill42aee92652012-08-26 21:45:35 -04001044 }
Barry Mienydd671972010-10-04 16:33:58 +02001045
Derek Allard2067d1a2008-11-13 22:59:24 +00001046 // If we got this far we were unable to find the requested class.
1047 // We do not issue errors if the load call failed due to a duplicate request
Alex Bilbieed944a32012-06-02 11:07:47 +01001048 if ($is_duplicate === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001049 {
Andrey Andreevd7297352012-01-07 22:53:14 +02001050 log_message('error', 'Unable to load the requested class: '.$class);
1051 show_error('Unable to load the requested class: '.$class);
Derek Allard2067d1a2008-11-13 22:59:24 +00001052 }
1053 }
Barry Mienydd671972010-10-04 16:33:58 +02001054
Derek Allard2067d1a2008-11-13 22:59:24 +00001055 // --------------------------------------------------------------------
1056
1057 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +03001058 * Internal CI Class Instantiator
Derek Allard2067d1a2008-11-13 22:59:24 +00001059 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001060 * @used-by CI_Loader::_ci_load_class()
1061 *
1062 * @param string $class Class name
1063 * @param string $prefix Class name prefix
1064 * @param array|null|bool $config Optional configuration to pass to the class constructor:
1065 * FALSE to skip;
1066 * NULL to search in config paths;
1067 * array containing configuration data
1068 * @param string $object_name Optional object name to assign to
Andrey Andreev94af3552012-03-26 23:10:42 +03001069 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001070 */
Greg Aker0c9ee4a2011-04-20 09:40:17 -05001071 protected function _ci_init_class($class, $prefix = '', $config = FALSE, $object_name = NULL)
Barry Mienydd671972010-10-04 16:33:58 +02001072 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001073 // Is there an associated config file for this class? Note: these should always be lowercase
Derek Allard2067d1a2008-11-13 22:59:24 +00001074 if ($config === NULL)
1075 {
Eric Barnes5e16ec62011-01-04 17:25:23 -05001076 // Fetch the config paths containing any package paths
1077 $config_component = $this->_ci_get_component('config');
1078
1079 if (is_array($config_component->_config_paths))
Derek Allard2067d1a2008-11-13 22:59:24 +00001080 {
Eric Barnes5e16ec62011-01-04 17:25:23 -05001081 // Break on the first found file, thus package files
1082 // are not overridden by default paths
1083 foreach ($config_component->_config_paths as $path)
1084 {
1085 // We test for both uppercase and lowercase, for servers that
joelcox1bfd9fa2011-01-16 18:49:39 +01001086 // are case-sensitive with regard to file names. Check for environment
1087 // first, global next
Andrey Andreev94af3552012-03-26 23:10:42 +03001088 if (defined('ENVIRONMENT') && file_exists($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'))
joelcox1bfd9fa2011-01-16 18:49:39 +01001089 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001090 include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php');
joelcox1bfd9fa2011-01-16 18:49:39 +01001091 break;
1092 }
Andrey Andreev94af3552012-03-26 23:10:42 +03001093 elseif (defined('ENVIRONMENT') && file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'))
joelcox1bfd9fa2011-01-16 18:49:39 +01001094 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001095 include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php');
joelcox1bfd9fa2011-01-16 18:49:39 +01001096 break;
1097 }
Andrey Andreev94af3552012-03-26 23:10:42 +03001098 elseif (file_exists($path.'config/'.strtolower($class).'.php'))
Eric Barnes5e16ec62011-01-04 17:25:23 -05001099 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001100 include($path.'config/'.strtolower($class).'.php');
Eric Barnes5e16ec62011-01-04 17:25:23 -05001101 break;
1102 }
Andrey Andreev94af3552012-03-26 23:10:42 +03001103 elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
Eric Barnes5e16ec62011-01-04 17:25:23 -05001104 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001105 include($path.'config/'.ucfirst(strtolower($class)).'.php');
Eric Barnes5e16ec62011-01-04 17:25:23 -05001106 break;
1107 }
1108 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001109 }
1110 }
Barry Mienydd671972010-10-04 16:33:58 +02001111
Alex Bilbieed944a32012-06-02 11:07:47 +01001112 if ($prefix === '')
Barry Mienydd671972010-10-04 16:33:58 +02001113 {
1114 if (class_exists('CI_'.$class))
Derek Allard2067d1a2008-11-13 22:59:24 +00001115 {
1116 $name = 'CI_'.$class;
1117 }
Barry Mienydd671972010-10-04 16:33:58 +02001118 elseif (class_exists(config_item('subclass_prefix').$class))
Derek Allard2067d1a2008-11-13 22:59:24 +00001119 {
1120 $name = config_item('subclass_prefix').$class;
1121 }
1122 else
1123 {
1124 $name = $class;
1125 }
1126 }
1127 else
1128 {
1129 $name = $prefix.$class;
1130 }
Barry Mienydd671972010-10-04 16:33:58 +02001131
Derek Allard2067d1a2008-11-13 22:59:24 +00001132 // Is the class name valid?
1133 if ( ! class_exists($name))
1134 {
Andrey Andreevd7297352012-01-07 22:53:14 +02001135 log_message('error', 'Non-existent class: '.$name);
jonnueee2df62012-07-16 13:06:16 +01001136 show_error('Non-existent class: '.$name);
Derek Allard2067d1a2008-11-13 22:59:24 +00001137 }
Barry Mienydd671972010-10-04 16:33:58 +02001138
Derek Allard2067d1a2008-11-13 22:59:24 +00001139 // Set the variable name we will assign the class to
Andrey Andreevd7297352012-01-07 22:53:14 +02001140 // Was a custom class name supplied? If so we'll use it
Derek Allard2067d1a2008-11-13 22:59:24 +00001141 $class = strtolower($class);
Barry Mienydd671972010-10-04 16:33:58 +02001142
Derek Allard2067d1a2008-11-13 22:59:24 +00001143 if (is_null($object_name))
1144 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001145 $classvar = isset($this->_ci_varmap[$class]) ? $this->_ci_varmap[$class] : $class;
Derek Allard2067d1a2008-11-13 22:59:24 +00001146 }
1147 else
1148 {
1149 $classvar = $object_name;
1150 }
1151
Barry Mienydd671972010-10-04 16:33:58 +02001152 // Save the class name and object name
Derek Allard2067d1a2008-11-13 22:59:24 +00001153 $this->_ci_classes[$class] = $classvar;
1154
Barry Mienydd671972010-10-04 16:33:58 +02001155 // Instantiate the class
Derek Allard2067d1a2008-11-13 22:59:24 +00001156 $CI =& get_instance();
1157 if ($config !== NULL)
1158 {
1159 $CI->$classvar = new $name($config);
1160 }
1161 else
Barry Mienydd671972010-10-04 16:33:58 +02001162 {
Andrey Andreeva11b16b2012-03-28 12:22:04 +03001163 $CI->$classvar = new $name();
Barry Mienydd671972010-10-04 16:33:58 +02001164 }
1165 }
1166
Derek Allard2067d1a2008-11-13 22:59:24 +00001167 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001168
Derek Allard2067d1a2008-11-13 22:59:24 +00001169 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +03001170 * CI Autoloader
Derek Allard2067d1a2008-11-13 22:59:24 +00001171 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001172 * Loads component listed in the config/autoload.php file.
Derek Allard2067d1a2008-11-13 22:59:24 +00001173 *
Andrey Andreevcdac2482012-11-03 18:09:01 +02001174 * @used-by CI_Loader::initialize()
Derek Allard2067d1a2008-11-13 22:59:24 +00001175 * @return void
1176 */
Shane Pearson665baec2011-08-22 18:52:19 -05001177 protected function _ci_autoloader()
Barry Mienydd671972010-10-04 16:33:58 +02001178 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001179 if (defined('ENVIRONMENT') && file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload.php'))
bubbafoley0ea04142011-03-17 14:55:41 -05001180 {
Shane Pearson6adfe632011-08-10 16:42:53 -05001181 include(APPPATH.'config/'.ENVIRONMENT.'/autoload.php');
bubbafoley0ea04142011-03-17 14:55:41 -05001182 }
1183 else
1184 {
Shane Pearson6adfe632011-08-10 16:42:53 -05001185 include(APPPATH.'config/autoload.php');
bubbafoley0ea04142011-03-17 14:55:41 -05001186 }
Barry Mienydd671972010-10-04 16:33:58 +02001187
Derek Allard2067d1a2008-11-13 22:59:24 +00001188 if ( ! isset($autoload))
1189 {
1190 return FALSE;
1191 }
Barry Mienydd671972010-10-04 16:33:58 +02001192
Phil Sturgeon9730c752010-12-15 10:50:15 +00001193 // Autoload packages
1194 if (isset($autoload['packages']))
1195 {
1196 foreach ($autoload['packages'] as $package_path)
1197 {
1198 $this->add_package_path($package_path);
1199 }
1200 }
1201
Derek Allard2067d1a2008-11-13 22:59:24 +00001202 // Load any custom config file
1203 if (count($autoload['config']) > 0)
Barry Mienydd671972010-10-04 16:33:58 +02001204 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001205 $CI =& get_instance();
1206 foreach ($autoload['config'] as $key => $val)
1207 {
1208 $CI->config->load($val);
1209 }
Barry Mienydd671972010-10-04 16:33:58 +02001210 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001211
Derek Jonesc6da5032010-03-09 20:44:27 -06001212 // Autoload helpers and languages
1213 foreach (array('helper', 'language') as $type)
Barry Mienydd671972010-10-04 16:33:58 +02001214 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001215 if (isset($autoload[$type]) && count($autoload[$type]) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001216 {
1217 $this->$type($autoload[$type]);
Barry Mienydd671972010-10-04 16:33:58 +02001218 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001219 }
1220
Derek Allard2067d1a2008-11-13 22:59:24 +00001221 // Load libraries
Andrey Andreev94af3552012-03-26 23:10:42 +03001222 if (isset($autoload['libraries']) && count($autoload['libraries']) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001223 {
1224 // Load the database driver.
1225 if (in_array('database', $autoload['libraries']))
1226 {
1227 $this->database();
1228 $autoload['libraries'] = array_diff($autoload['libraries'], array('database'));
1229 }
Barry Mienydd671972010-10-04 16:33:58 +02001230
Derek Allard2067d1a2008-11-13 22:59:24 +00001231 // Load all other libraries
1232 foreach ($autoload['libraries'] as $item)
1233 {
1234 $this->library($item);
1235 }
Barry Mienydd671972010-10-04 16:33:58 +02001236 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001237
Darren Hillc4e266b2011-08-30 15:40:27 -04001238 // Autoload drivers
1239 if (isset($autoload['drivers']))
1240 {
Darren Hillca3be1d2011-08-31 08:31:18 -04001241 foreach ($autoload['drivers'] as $item)
1242 {
1243 $this->driver($item);
1244 }
Darren Hillc4e266b2011-08-30 15:40:27 -04001245 }
1246
Derek Allard2067d1a2008-11-13 22:59:24 +00001247 // Autoload models
1248 if (isset($autoload['model']))
1249 {
1250 $this->model($autoload['model']);
1251 }
Barry Mienydd671972010-10-04 16:33:58 +02001252 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001253
1254 // --------------------------------------------------------------------
1255
1256 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +03001257 * CI Object to Array translator
Derek Allard2067d1a2008-11-13 22:59:24 +00001258 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001259 * Takes an object as input and converts the class variables to
1260 * an associative array with key/value pairs.
Derek Allard2067d1a2008-11-13 22:59:24 +00001261 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001262 * @param object $object Object data to translate
Derek Allard2067d1a2008-11-13 22:59:24 +00001263 * @return array
1264 */
Greg Akerf5c84022011-04-19 17:13:03 -05001265 protected function _ci_object_to_array($object)
Derek Allard2067d1a2008-11-13 22:59:24 +00001266 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001267 return is_object($object) ? get_object_vars($object) : $object;
Derek Allard2067d1a2008-11-13 22:59:24 +00001268 }
1269
1270 // --------------------------------------------------------------------
1271
1272 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +03001273 * CI Component getter
Derek Jones32bf1862010-03-02 13:46:07 -06001274 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001275 * Get a reference to a specific library or model.
1276 *
1277 * @param string $component Component name
Derek Jones32bf1862010-03-02 13:46:07 -06001278 * @return bool
1279 */
Greg Akerf5c84022011-04-19 17:13:03 -05001280 protected function &_ci_get_component($component)
Derek Jones32bf1862010-03-02 13:46:07 -06001281 {
Pascal Kriete89ace432010-11-10 15:49:10 -05001282 $CI =& get_instance();
1283 return $CI->$component;
Derek Jones32bf1862010-03-02 13:46:07 -06001284 }
1285
1286 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001287
Derek Jones32bf1862010-03-02 13:46:07 -06001288 /**
1289 * Prep filename
1290 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001291 * This function prepares filenames of various items to
1292 * make their loading more reliable.
Derek Jones32bf1862010-03-02 13:46:07 -06001293 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001294 * @param string|string[] $filename Filename(s)
1295 * @param string $extension Filename extension
Derek Jones32bf1862010-03-02 13:46:07 -06001296 * @return array
1297 */
Greg Akerf5c84022011-04-19 17:13:03 -05001298 protected function _ci_prep_filename($filename, $extension)
Derek Jones32bf1862010-03-02 13:46:07 -06001299 {
1300 if ( ! is_array($filename))
Barry Mienydd671972010-10-04 16:33:58 +02001301 {
Andrey Andreevd47baab2012-01-09 16:56:46 +02001302 return array(strtolower(str_replace(array($extension, '.php'), '', $filename).$extension));
Derek Jones32bf1862010-03-02 13:46:07 -06001303 }
1304 else
1305 {
1306 foreach ($filename as $key => $val)
1307 {
Andrey Andreevd47baab2012-01-09 16:56:46 +02001308 $filename[$key] = strtolower(str_replace(array($extension, '.php'), '', $val).$extension);
Derek Jones32bf1862010-03-02 13:46:07 -06001309 }
Barry Mienydd671972010-10-04 16:33:58 +02001310
Derek Jones32bf1862010-03-02 13:46:07 -06001311 return $filename;
1312 }
1313 }
Andrey Andreev94af3552012-03-26 23:10:42 +03001314
Derek Allard2067d1a2008-11-13 22:59:24 +00001315}
1316
1317/* End of file Loader.php */
Andrey Andreev9438e262012-10-05 13:16:27 +03001318/* Location: ./system/core/Loader.php */