blob: 651507470615ca04ac6344c691f643168830fe86 [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
Barry Mienydd671972010-10-04 16:33:58 +0200535 // Is this a helper extension request?
Andrey Andreev12d7b462012-11-12 13:42:09 +0200536 $ext_helper = config_item('subclass_prefix').$helper;
537 $ext_loaded = FALSE;
538 foreach ($this->_ci_helper_paths as $path)
539 {
540 if (file_exists($path.'helpers/'.$ext_helper.'.php'))
541 {
542 include_once($path.'helpers/'.$ext_helper.'.php');
543 $ext_loaded = TRUE;
544 }
545 }
546
547 // If we have loaded extensions - check if the base one is here
548 if ($ext_loaded === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000549 {
Greg Aker3a746652011-04-19 10:59:47 -0500550 $base_helper = BASEPATH.'helpers/'.$helper.'.php';
Derek Allard2067d1a2008-11-13 22:59:24 +0000551 if ( ! file_exists($base_helper))
552 {
Greg Aker3a746652011-04-19 10:59:47 -0500553 show_error('Unable to load the requested file: helpers/'.$helper.'.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000554 }
Barry Mienydd671972010-10-04 16:33:58 +0200555
Derek Allard2067d1a2008-11-13 22:59:24 +0000556 include_once($base_helper);
Derek Jones32bf1862010-03-02 13:46:07 -0600557 $this->_ci_helpers[$helper] = TRUE;
558 log_message('debug', 'Helper loaded: '.$helper);
559 continue;
Derek Allard2067d1a2008-11-13 22:59:24 +0000560 }
Barry Mienydd671972010-10-04 16:33:58 +0200561
Andrey Andreev12d7b462012-11-12 13:42:09 +0200562 // No extensions found ... try loading regular helpers and/or overrides
Derek Jones32bf1862010-03-02 13:46:07 -0600563 foreach ($this->_ci_helper_paths as $path)
564 {
Greg Aker3a746652011-04-19 10:59:47 -0500565 if (file_exists($path.'helpers/'.$helper.'.php'))
Barry Mienydd671972010-10-04 16:33:58 +0200566 {
Greg Aker3a746652011-04-19 10:59:47 -0500567 include_once($path.'helpers/'.$helper.'.php');
Derek Jones32bf1862010-03-02 13:46:07 -0600568
569 $this->_ci_helpers[$helper] = TRUE;
Barry Mienydd671972010-10-04 16:33:58 +0200570 log_message('debug', 'Helper loaded: '.$helper);
Derek Jones32bf1862010-03-02 13:46:07 -0600571 break;
Derek Allard2067d1a2008-11-13 22:59:24 +0000572 }
573 }
574
Derek Jones32bf1862010-03-02 13:46:07 -0600575 // unable to load the helper
576 if ( ! isset($this->_ci_helpers[$helper]))
577 {
Greg Aker3a746652011-04-19 10:59:47 -0500578 show_error('Unable to load the requested file: helpers/'.$helper.'.php');
Derek Jones32bf1862010-03-02 13:46:07 -0600579 }
Barry Mienydd671972010-10-04 16:33:58 +0200580 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000581 }
Barry Mienydd671972010-10-04 16:33:58 +0200582
Derek Allard2067d1a2008-11-13 22:59:24 +0000583 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200584
Derek Allard2067d1a2008-11-13 22:59:24 +0000585 /**
586 * Load Helpers
587 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300588 * An alias for the helper() method in case the developer has
589 * written the plural form of it.
Derek Allard2067d1a2008-11-13 22:59:24 +0000590 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300591 * @uses CI_Loader::helper()
592 * @param string|string[] $helpers Helper name(s)
Derek Allard2067d1a2008-11-13 22:59:24 +0000593 * @return void
594 */
Greg Akerf5c84022011-04-19 17:13:03 -0500595 public function helpers($helpers = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000596 {
597 $this->helper($helpers);
598 }
Barry Mienydd671972010-10-04 16:33:58 +0200599
Derek Allard2067d1a2008-11-13 22:59:24 +0000600 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200601
Derek Allard2067d1a2008-11-13 22:59:24 +0000602 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300603 * Language Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000604 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300605 * Loads language files.
606 *
607 * @param string|string[] $files List of language file names to load
608 * @param string Language name
Derek Allard2067d1a2008-11-13 22:59:24 +0000609 * @return void
610 */
Andrey Andreeved4b2582012-10-27 17:46:52 +0300611 public function language($files = array(), $lang = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000612 {
613 $CI =& get_instance();
614
Andrey Andreeved4b2582012-10-27 17:46:52 +0300615 is_array($files) OR $files = array($files);
Derek Allard2067d1a2008-11-13 22:59:24 +0000616
Andrey Andreeved4b2582012-10-27 17:46:52 +0300617 foreach ($files as $langfile)
Barry Mienydd671972010-10-04 16:33:58 +0200618 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000619 $CI->lang->load($langfile, $lang);
620 }
621 }
Barry Mienydd671972010-10-04 16:33:58 +0200622
Derek Allard2067d1a2008-11-13 22:59:24 +0000623 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200624
Derek Allard2067d1a2008-11-13 22:59:24 +0000625 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300626 * Config Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300628 * Loads a config file (an alias for CI_Config::load()).
629 *
630 * @uses CI_Config::load()
631 * @param string $file Configuration file name
632 * @param bool $use_sections Whether configuration values should be loaded into their own section
633 * @param bool $fail_gracefully Whether to just return FALSE or display an error message
634 * @return bool TRUE if the file was loaded correctly or FALSE on failure
Derek Allard2067d1a2008-11-13 22:59:24 +0000635 */
Greg Akerf5c84022011-04-19 17:13:03 -0500636 public function config($file = '', $use_sections = FALSE, $fail_gracefully = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200637 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000638 $CI =& get_instance();
Andrey Andreeved4b2582012-10-27 17:46:52 +0300639 return $CI->config->load($file, $use_sections, $fail_gracefully);
Derek Allard2067d1a2008-11-13 22:59:24 +0000640 }
641
642 // --------------------------------------------------------------------
Derek Jones32bf1862010-03-02 13:46:07 -0600643
Derek Allard2067d1a2008-11-13 22:59:24 +0000644 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300645 * Driver Loader
Derek Jones8dca0412010-03-05 13:01:44 -0600646 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300647 * Loads a driver library.
Derek Jones8dca0412010-03-05 13:01:44 -0600648 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300649 * @param string|string[] $library Driver name(s)
650 * @param array $params Optional parameters to pass to the driver
651 * @param string $object_name An optional object name to assign to
652 *
653 * @return void|object|bool Object or FALSE on failure if $library is a string
654 * and $object_name is set. void otherwise.
Derek Jones8dca0412010-03-05 13:01:44 -0600655 */
Greg Akerf5c84022011-04-19 17:13:03 -0500656 public function driver($library = '', $params = NULL, $object_name = NULL)
Derek Jones8dca0412010-03-05 13:01:44 -0600657 {
Christopher Guineyb54d3552012-03-10 08:38:10 -0800658 if (is_array($library))
Christopher Guiney9929d6f2012-03-09 19:53:24 -0800659 {
Christopher Guineyb54d3552012-03-10 08:38:10 -0800660 foreach ($library as $driver)
Christopher Guiney9929d6f2012-03-09 19:53:24 -0800661 {
662 $this->driver($driver);
663 }
dchill420fc3be52012-08-27 20:54:23 -0400664 return;
Christopher Guiney9929d6f2012-03-09 19:53:24 -0800665 }
666
Alex Bilbieed944a32012-06-02 11:07:47 +0100667 if ($library === '')
Tom Klingenberg6a15b2d2011-10-07 20:03:30 +0200668 {
669 return FALSE;
670 }
671
dchill426262d052012-11-24 18:41:13 -0500672 if ( ! class_exists('CI_Driver_Library'))
673 {
674 // We aren't instantiating an object here, just making the base class available
675 require BASEPATH.'libraries/Driver.php';
676 }
677
Derek Jonesd5e0cb52010-03-09 20:20:46 -0600678 // We can save the loader some time since Drivers will *always* be in a subfolder,
679 // and typically identically named to the library
680 if ( ! strpos($library, '/'))
681 {
Greg Akerd25e66a2010-03-28 01:07:09 -0500682 $library = ucfirst($library).'/'.$library;
Derek Jones8dca0412010-03-05 13:01:44 -0600683 }
Barry Mienydd671972010-10-04 16:33:58 +0200684
Derek Jones8dca0412010-03-05 13:01:44 -0600685 return $this->library($library, $params, $object_name);
686 }
687
688 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200689
Derek Jones8dca0412010-03-05 13:01:44 -0600690 /**
Derek Jones32bf1862010-03-02 13:46:07 -0600691 * Add Package Path
Derek Allard2067d1a2008-11-13 22:59:24 +0000692 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300693 * Prepends a parent path to the library, model, helper and config
694 * path arrays.
Derek Allard2067d1a2008-11-13 22:59:24 +0000695 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300696 * @see CI_Loader::$_ci_library_paths
697 * @see CI_Loader::$_ci_model_paths
698 * @see CI_Loader::$_ci_helper_paths
699 * @see CI_Config::$_config_paths
700 *
701 * @param string $path Path to add
702 * @param bool $view_cascade (default: TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000703 * @return void
Derek Jones32bf1862010-03-02 13:46:07 -0600704 */
Andrey Andreevcce91802012-06-12 13:25:31 +0300705 public function add_package_path($path, $view_cascade = TRUE)
Derek Jones32bf1862010-03-02 13:46:07 -0600706 {
Pascal Kriete6b6c2742010-11-09 13:12:22 -0500707 $path = rtrim($path, '/').'/';
David Behlercda768a2011-08-14 23:52:48 +0200708
Derek Jones32bf1862010-03-02 13:46:07 -0600709 array_unshift($this->_ci_library_paths, $path);
710 array_unshift($this->_ci_model_paths, $path);
711 array_unshift($this->_ci_helper_paths, $path);
Barry Mienydd671972010-10-04 16:33:58 +0200712
Greg Akerf5c84022011-04-19 17:13:03 -0500713 $this->_ci_view_paths = array($path.'views/' => $view_cascade) + $this->_ci_view_paths;
714
Derek Jones32bf1862010-03-02 13:46:07 -0600715 // Add config file path
716 $config =& $this->_ci_get_component('config');
Korri3684d342012-04-17 00:35:08 -0400717 array_push($config->_config_paths, $path);
Derek Allard2067d1a2008-11-13 22:59:24 +0000718 }
719
720 // --------------------------------------------------------------------
Derek Jones32bf1862010-03-02 13:46:07 -0600721
722 /**
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000723 * Get Package Paths
724 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300725 * Return a list of all package paths.
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000726 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300727 * @param bool $include_base Whether to include BASEPATH (default: TRUE)
728 * @return array
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000729 */
Greg Akerf5c84022011-04-19 17:13:03 -0500730 public function get_package_paths($include_base = FALSE)
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000731 {
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300732 return ($include_base === TRUE) ? $this->_ci_library_paths : $this->_ci_model_paths;
Phil Sturgeonde3dbc32010-12-27 17:41:02 +0000733 }
734
735 // --------------------------------------------------------------------
736
737 /**
Derek Jones32bf1862010-03-02 13:46:07 -0600738 * Remove Package Path
739 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300740 * Remove a path from the library, model, helper and/or config
741 * path arrays if it exists. If no path is provided, the most recently
742 * added path will be removed removed.
Derek Jones32bf1862010-03-02 13:46:07 -0600743 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300744 * @param string $path Path to remove
Andrey Andreev94af3552012-03-26 23:10:42 +0300745 * @return void
Derek Jones32bf1862010-03-02 13:46:07 -0600746 */
Andrey Andreeved4b2582012-10-27 17:46:52 +0300747 public function remove_package_path($path = '')
Derek Jones32bf1862010-03-02 13:46:07 -0600748 {
749 $config =& $this->_ci_get_component('config');
Barry Mienydd671972010-10-04 16:33:58 +0200750
Alex Bilbieed944a32012-06-02 11:07:47 +0100751 if ($path === '')
Derek Jones32bf1862010-03-02 13:46:07 -0600752 {
Andrey Andreevd7297352012-01-07 22:53:14 +0200753 array_shift($this->_ci_library_paths);
754 array_shift($this->_ci_model_paths);
755 array_shift($this->_ci_helper_paths);
756 array_shift($this->_ci_view_paths);
Korri3684d342012-04-17 00:35:08 -0400757 array_pop($config->_config_paths);
Derek Jones32bf1862010-03-02 13:46:07 -0600758 }
759 else
760 {
Pascal Kriete6b6c2742010-11-09 13:12:22 -0500761 $path = rtrim($path, '/').'/';
Derek Jones32bf1862010-03-02 13:46:07 -0600762 foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var)
763 {
764 if (($key = array_search($path, $this->{$var})) !== FALSE)
765 {
766 unset($this->{$var}[$key]);
767 }
768 }
David Behlercda768a2011-08-14 23:52:48 +0200769
Greg Akerf5c84022011-04-19 17:13:03 -0500770 if (isset($this->_ci_view_paths[$path.'views/']))
771 {
772 unset($this->_ci_view_paths[$path.'views/']);
773 }
Barry Mienydd671972010-10-04 16:33:58 +0200774
Derek Jones32bf1862010-03-02 13:46:07 -0600775 if (($key = array_search($path, $config->_config_paths)) !== FALSE)
776 {
777 unset($config->_config_paths[$key]);
778 }
779 }
Barry Mienydd671972010-10-04 16:33:58 +0200780
Derek Jones32bf1862010-03-02 13:46:07 -0600781 // make sure the application default paths are still in the array
782 $this->_ci_library_paths = array_unique(array_merge($this->_ci_library_paths, array(APPPATH, BASEPATH)));
783 $this->_ci_helper_paths = array_unique(array_merge($this->_ci_helper_paths, array(APPPATH, BASEPATH)));
784 $this->_ci_model_paths = array_unique(array_merge($this->_ci_model_paths, array(APPPATH)));
Greg Akerf5c84022011-04-19 17:13:03 -0500785 $this->_ci_view_paths = array_merge($this->_ci_view_paths, array(APPPATH.'views/' => TRUE));
Derek Jones32bf1862010-03-02 13:46:07 -0600786 $config->_config_paths = array_unique(array_merge($config->_config_paths, array(APPPATH)));
787 }
788
789 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200790
Derek Allard2067d1a2008-11-13 22:59:24 +0000791 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300792 * Internal CI Data Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000793 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300794 * Used to load views and files.
795 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000796 * Variables are prefixed with _ci_ to avoid symbol collision with
Andrey Andreeved4b2582012-10-27 17:46:52 +0300797 * variables made available to view files.
Derek Allard2067d1a2008-11-13 22:59:24 +0000798 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300799 * @used-by CI_Loader::view()
800 * @used-by CI_Loader::file()
801 * @param array $_ci_data Data to load
Derek Allard2067d1a2008-11-13 22:59:24 +0000802 * @return void
803 */
Greg Akerf5c84022011-04-19 17:13:03 -0500804 protected function _ci_load($_ci_data)
Derek Allard2067d1a2008-11-13 22:59:24 +0000805 {
806 // Set the default data variables
807 foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $_ci_val)
808 {
Andrey Andreev94af3552012-03-26 23:10:42 +0300809 $$_ci_val = isset($_ci_data[$_ci_val]) ? $_ci_data[$_ci_val] : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000810 }
David Behlercda768a2011-08-14 23:52:48 +0200811
Greg Akerf5c84022011-04-19 17:13:03 -0500812 $file_exists = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000813
814 // Set the path to the requested file
Alex Bilbie40bd2a72012-06-02 16:04:15 +0100815 if (is_string($_ci_path) && $_ci_path !== '')
Greg Aker8807be32011-04-21 13:06:15 -0500816 {
817 $_ci_x = explode('/', $_ci_path);
818 $_ci_file = end($_ci_x);
819 }
820 else
Derek Allard2067d1a2008-11-13 22:59:24 +0000821 {
822 $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);
Alex Bilbieed944a32012-06-02 11:07:47 +0100823 $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view;
Greg Akerf5c84022011-04-19 17:13:03 -0500824
Joe McFrederick64f470b2012-08-18 12:29:56 -0400825 foreach ($this->_ci_view_paths as $_ci_view_file => $cascade)
Greg Akerf5c84022011-04-19 17:13:03 -0500826 {
Joe McFrederick64f470b2012-08-18 12:29:56 -0400827 if (file_exists($_ci_view_file.$_ci_file))
Greg Akerf5c84022011-04-19 17:13:03 -0500828 {
Joe McFrederick64f470b2012-08-18 12:29:56 -0400829 $_ci_path = $_ci_view_file.$_ci_file;
Greg Akerf5c84022011-04-19 17:13:03 -0500830 $file_exists = TRUE;
831 break;
832 }
David Behlercda768a2011-08-14 23:52:48 +0200833
Greg Akerf5c84022011-04-19 17:13:03 -0500834 if ( ! $cascade)
835 {
836 break;
David Behlercda768a2011-08-14 23:52:48 +0200837 }
Greg Akerf5c84022011-04-19 17:13:03 -0500838 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000839 }
Barry Mienydd671972010-10-04 16:33:58 +0200840
Greg Akerf5c84022011-04-19 17:13:03 -0500841 if ( ! $file_exists && ! file_exists($_ci_path))
Derek Allard2067d1a2008-11-13 22:59:24 +0000842 {
843 show_error('Unable to load the requested file: '.$_ci_file);
844 }
Barry Mienydd671972010-10-04 16:33:58 +0200845
Derek Allard2067d1a2008-11-13 22:59:24 +0000846 // This allows anything loaded using $this->load (views, files, etc.)
847 // to become accessible from within the Controller and Model functions.
Pascal Kriete89ace432010-11-10 15:49:10 -0500848 $_ci_CI =& get_instance();
849 foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)
Derek Allard2067d1a2008-11-13 22:59:24 +0000850 {
Pascal Kriete89ace432010-11-10 15:49:10 -0500851 if ( ! isset($this->$_ci_key))
Derek Allard2067d1a2008-11-13 22:59:24 +0000852 {
Pascal Kriete89ace432010-11-10 15:49:10 -0500853 $this->$_ci_key =& $_ci_CI->$_ci_key;
Derek Allard2067d1a2008-11-13 22:59:24 +0000854 }
855 }
856
857 /*
858 * Extract and cache variables
859 *
vlakoff02506182012-07-03 07:28:50 +0200860 * You can either set variables using the dedicated $this->load->vars()
Derek Allard2067d1a2008-11-13 22:59:24 +0000861 * function or via the second parameter of this function. We'll merge
862 * the two types and cache them so that views that are embedded within
863 * other views can have access to these variables.
Barry Mienydd671972010-10-04 16:33:58 +0200864 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000865 if (is_array($_ci_vars))
866 {
867 $this->_ci_cached_vars = array_merge($this->_ci_cached_vars, $_ci_vars);
868 }
869 extract($this->_ci_cached_vars);
Barry Mienydd671972010-10-04 16:33:58 +0200870
Derek Allard2067d1a2008-11-13 22:59:24 +0000871 /*
872 * Buffer the output
873 *
874 * We buffer the output for two reasons:
875 * 1. Speed. You get a significant speed boost.
Andrey Andreevd7297352012-01-07 22:53:14 +0200876 * 2. So that the final rendered template can be post-processed by
dchill425628ba02012-08-08 12:05:45 -0400877 * the output class. Why do we need post processing? For one thing,
878 * in order to show the elapsed page load time. Unless we can
879 * intercept the content right before it's sent to the browser and
880 * then stop the timer it won't be accurate.
Derek Allard2067d1a2008-11-13 22:59:24 +0000881 */
882 ob_start();
Barry Mienydd671972010-10-04 16:33:58 +0200883
Derek Allard2067d1a2008-11-13 22:59:24 +0000884 // If the PHP installation does not support short tags we'll
885 // do a little string replacement, changing the short tags
886 // to standard PHP echo statements.
Andrey Andreeve9d2dc82012-11-07 14:23:29 +0200887 if ( ! is_php('5.4') && (bool) @ini_get('short_open_tag') === FALSE
888 && config_item('rewrite_short_tags') === TRUE && function_usable('eval')
889 )
Derek Allard2067d1a2008-11-13 22:59:24 +0000890 {
Andrey Andreevd47baab2012-01-09 16:56:46 +0200891 echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path))));
Derek Allard2067d1a2008-11-13 22:59:24 +0000892 }
893 else
894 {
895 include($_ci_path); // include() vs include_once() allows for multiple views with the same name
896 }
Barry Mienydd671972010-10-04 16:33:58 +0200897
Derek Allard2067d1a2008-11-13 22:59:24 +0000898 log_message('debug', 'File loaded: '.$_ci_path);
Barry Mienydd671972010-10-04 16:33:58 +0200899
Derek Allard2067d1a2008-11-13 22:59:24 +0000900 // Return the file data if requested
901 if ($_ci_return === TRUE)
Barry Mienydd671972010-10-04 16:33:58 +0200902 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000903 $buffer = ob_get_contents();
904 @ob_end_clean();
905 return $buffer;
906 }
907
908 /*
909 * Flush the buffer... or buff the flusher?
910 *
911 * In order to permit views to be nested within
912 * other views, we need to flush the content back out whenever
913 * we are beyond the first level of output buffering so that
914 * it can be seen and included properly by the first included
915 * template and any subsequent ones. Oy!
Barry Mienydd671972010-10-04 16:33:58 +0200916 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000917 if (ob_get_level() > $this->_ci_ob_level + 1)
918 {
919 ob_end_flush();
920 }
921 else
922 {
Greg Aker22f1a632010-11-10 15:34:35 -0600923 $_ci_CI->output->append_output(ob_get_contents());
Derek Allard2067d1a2008-11-13 22:59:24 +0000924 @ob_end_clean();
925 }
926 }
927
928 // --------------------------------------------------------------------
929
930 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +0300931 * Internal CI Class Loader
Derek Allard2067d1a2008-11-13 22:59:24 +0000932 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300933 * @used-by CI_Loader::library()
934 * @uses CI_Loader::_ci_init_class()
Derek Allard2067d1a2008-11-13 22:59:24 +0000935 *
Andrey Andreeved4b2582012-10-27 17:46:52 +0300936 * @param string $class Class name to load
937 * @param mixed $params Optional parameters to pass to the class constructor
938 * @param string $object_name Optional object name to assign to
Barry Mienydd671972010-10-04 16:33:58 +0200939 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +0000940 */
Greg Akerf5c84022011-04-19 17:13:03 -0500941 protected function _ci_load_class($class, $params = NULL, $object_name = NULL)
Barry Mienydd671972010-10-04 16:33:58 +0200942 {
943 // Get the class name, and while we're at it trim any slashes.
944 // The directory path can be included as part of the class name,
Derek Allard2067d1a2008-11-13 22:59:24 +0000945 // but we don't want a leading slash
Greg Aker3a746652011-04-19 10:59:47 -0500946 $class = str_replace('.php', '', trim($class, '/'));
Barry Mienydd671972010-10-04 16:33:58 +0200947
Derek Allard2067d1a2008-11-13 22:59:24 +0000948 // Was the path included with the class name?
949 // We look for a slash to determine this
950 $subdir = '';
Derek Jones32bf1862010-03-02 13:46:07 -0600951 if (($last_slash = strrpos($class, '/')) !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000952 {
Derek Jones32bf1862010-03-02 13:46:07 -0600953 // Extract the path
Andrey Andreevd7297352012-01-07 22:53:14 +0200954 $subdir = substr($class, 0, ++$last_slash);
Barry Mienydd671972010-10-04 16:33:58 +0200955
Derek Jones32bf1862010-03-02 13:46:07 -0600956 // Get the filename from the path
Andrey Andreevd7297352012-01-07 22:53:14 +0200957 $class = substr($class, $last_slash);
Derek Allard2067d1a2008-11-13 22:59:24 +0000958 }
959
960 // We'll test for both lowercase and capitalized versions of the file name
961 foreach (array(ucfirst($class), strtolower($class)) as $class)
962 {
Greg Aker3a746652011-04-19 10:59:47 -0500963 $subclass = APPPATH.'libraries/'.$subdir.config_item('subclass_prefix').$class.'.php';
Derek Allard2067d1a2008-11-13 22:59:24 +0000964
Barry Mienydd671972010-10-04 16:33:58 +0200965 // Is this a class extension request?
Derek Allard2067d1a2008-11-13 22:59:24 +0000966 if (file_exists($subclass))
967 {
Greg Aker3a746652011-04-19 10:59:47 -0500968 $baseclass = BASEPATH.'libraries/'.ucfirst($class).'.php';
Barry Mienydd671972010-10-04 16:33:58 +0200969
Derek Allard2067d1a2008-11-13 22:59:24 +0000970 if ( ! file_exists($baseclass))
971 {
Andrey Andreevd7297352012-01-07 22:53:14 +0200972 log_message('error', 'Unable to load the requested class: '.$class);
973 show_error('Unable to load the requested class: '.$class);
Derek Allard2067d1a2008-11-13 22:59:24 +0000974 }
975
Andrey Andreevd7297352012-01-07 22:53:14 +0200976 // Safety: Was the class already loaded by a previous call?
Derek Allard2067d1a2008-11-13 22:59:24 +0000977 if (in_array($subclass, $this->_ci_loaded_files))
978 {
979 // Before we deem this to be a duplicate request, let's see
Andrey Andreevd7297352012-01-07 22:53:14 +0200980 // if a custom object name is being supplied. If so, we'll
Derek Allard2067d1a2008-11-13 22:59:24 +0000981 // return a new instance of the object
982 if ( ! is_null($object_name))
983 {
984 $CI =& get_instance();
985 if ( ! isset($CI->$object_name))
986 {
Barry Mienydd671972010-10-04 16:33:58 +0200987 return $this->_ci_init_class($class, config_item('subclass_prefix'), $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +0000988 }
989 }
Barry Mienydd671972010-10-04 16:33:58 +0200990
Derek Allard2067d1a2008-11-13 22:59:24 +0000991 $is_duplicate = TRUE;
Andrey Andreevd7297352012-01-07 22:53:14 +0200992 log_message('debug', $class.' class already loaded. Second attempt ignored.');
Derek Allard2067d1a2008-11-13 22:59:24 +0000993 return;
994 }
Barry Mienydd671972010-10-04 16:33:58 +0200995
996 include_once($baseclass);
Derek Allard2067d1a2008-11-13 22:59:24 +0000997 include_once($subclass);
998 $this->_ci_loaded_files[] = $subclass;
Barry Mienydd671972010-10-04 16:33:58 +0200999
1000 return $this->_ci_init_class($class, config_item('subclass_prefix'), $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +00001001 }
Barry Mienydd671972010-10-04 16:33:58 +02001002
Derek Allard2067d1a2008-11-13 22:59:24 +00001003 // Lets search for the requested library file and load it.
Derek Jones32bf1862010-03-02 13:46:07 -06001004 $is_duplicate = FALSE;
1005 foreach ($this->_ci_library_paths as $path)
Derek Allard2067d1a2008-11-13 22:59:24 +00001006 {
Greg Aker3a746652011-04-19 10:59:47 -05001007 $filepath = $path.'libraries/'.$subdir.$class.'.php';
Derek Jones32bf1862010-03-02 13:46:07 -06001008
Andrey Andreevd7297352012-01-07 22:53:14 +02001009 // Does the file exist? No? Bummer...
Derek Allard2067d1a2008-11-13 22:59:24 +00001010 if ( ! file_exists($filepath))
1011 {
1012 continue;
1013 }
Barry Mienydd671972010-10-04 16:33:58 +02001014
Andrey Andreevd7297352012-01-07 22:53:14 +02001015 // Safety: Was the class already loaded by a previous call?
Derek Allard2067d1a2008-11-13 22:59:24 +00001016 if (in_array($filepath, $this->_ci_loaded_files))
1017 {
1018 // Before we deem this to be a duplicate request, let's see
Andrey Andreevd7297352012-01-07 22:53:14 +02001019 // if a custom object name is being supplied. If so, we'll
Derek Allard2067d1a2008-11-13 22:59:24 +00001020 // return a new instance of the object
1021 if ( ! is_null($object_name))
1022 {
1023 $CI =& get_instance();
1024 if ( ! isset($CI->$object_name))
1025 {
1026 return $this->_ci_init_class($class, '', $params, $object_name);
1027 }
1028 }
Barry Mienydd671972010-10-04 16:33:58 +02001029
Derek Allard2067d1a2008-11-13 22:59:24 +00001030 $is_duplicate = TRUE;
Andrey Andreevd7297352012-01-07 22:53:14 +02001031 log_message('debug', $class.' class already loaded. Second attempt ignored.');
Derek Allard2067d1a2008-11-13 22:59:24 +00001032 return;
1033 }
Barry Mienydd671972010-10-04 16:33:58 +02001034
Derek Allard2067d1a2008-11-13 22:59:24 +00001035 include_once($filepath);
1036 $this->_ci_loaded_files[] = $filepath;
Barry Mienydd671972010-10-04 16:33:58 +02001037 return $this->_ci_init_class($class, '', $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +00001038 }
1039 } // END FOREACH
1040
Andrey Andreevd7297352012-01-07 22:53:14 +02001041 // One last attempt. Maybe the library is in a subdirectory, but it wasn't specified?
Alex Bilbieed944a32012-06-02 11:07:47 +01001042 if ($subdir === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001043 {
1044 $path = strtolower($class).'/'.$class;
dchill420fc3be52012-08-27 20:54:23 -04001045 return $this->_ci_load_class($path, $params, $object_name);
Derek Allard2067d1a2008-11-13 22:59:24 +00001046 }
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001047 elseif (ucfirst($subdir) != $subdir)
dchill42aee92652012-08-26 21:45:35 -04001048 {
1049 // Lowercase subdir failed - retry capitalized
1050 $path = ucfirst($subdir).$class;
dchill420fc3be52012-08-27 20:54:23 -04001051 return $this->_ci_load_class($path, $params, $object_name);
dchill42aee92652012-08-26 21:45:35 -04001052 }
Barry Mienydd671972010-10-04 16:33:58 +02001053
Derek Allard2067d1a2008-11-13 22:59:24 +00001054 // If we got this far we were unable to find the requested class.
1055 // We do not issue errors if the load call failed due to a duplicate request
Alex Bilbieed944a32012-06-02 11:07:47 +01001056 if ($is_duplicate === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001057 {
Andrey Andreevd7297352012-01-07 22:53:14 +02001058 log_message('error', 'Unable to load the requested class: '.$class);
1059 show_error('Unable to load the requested class: '.$class);
Derek Allard2067d1a2008-11-13 22:59:24 +00001060 }
1061 }
Barry Mienydd671972010-10-04 16:33:58 +02001062
Derek Allard2067d1a2008-11-13 22:59:24 +00001063 // --------------------------------------------------------------------
1064
1065 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +03001066 * Internal CI Class Instantiator
Derek Allard2067d1a2008-11-13 22:59:24 +00001067 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001068 * @used-by CI_Loader::_ci_load_class()
1069 *
1070 * @param string $class Class name
1071 * @param string $prefix Class name prefix
1072 * @param array|null|bool $config Optional configuration to pass to the class constructor:
1073 * FALSE to skip;
1074 * NULL to search in config paths;
1075 * array containing configuration data
1076 * @param string $object_name Optional object name to assign to
Andrey Andreev94af3552012-03-26 23:10:42 +03001077 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +00001078 */
Greg Aker0c9ee4a2011-04-20 09:40:17 -05001079 protected function _ci_init_class($class, $prefix = '', $config = FALSE, $object_name = NULL)
Barry Mienydd671972010-10-04 16:33:58 +02001080 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001081 // Is there an associated config file for this class? Note: these should always be lowercase
Derek Allard2067d1a2008-11-13 22:59:24 +00001082 if ($config === NULL)
1083 {
Eric Barnes5e16ec62011-01-04 17:25:23 -05001084 // Fetch the config paths containing any package paths
1085 $config_component = $this->_ci_get_component('config');
1086
1087 if (is_array($config_component->_config_paths))
Derek Allard2067d1a2008-11-13 22:59:24 +00001088 {
Eric Barnes5e16ec62011-01-04 17:25:23 -05001089 // Break on the first found file, thus package files
1090 // are not overridden by default paths
1091 foreach ($config_component->_config_paths as $path)
1092 {
1093 // We test for both uppercase and lowercase, for servers that
joelcox1bfd9fa2011-01-16 18:49:39 +01001094 // are case-sensitive with regard to file names. Check for environment
1095 // first, global next
Andrey Andreev94af3552012-03-26 23:10:42 +03001096 if (defined('ENVIRONMENT') && file_exists($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'))
joelcox1bfd9fa2011-01-16 18:49:39 +01001097 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001098 include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php');
joelcox1bfd9fa2011-01-16 18:49:39 +01001099 break;
1100 }
Andrey Andreev94af3552012-03-26 23:10:42 +03001101 elseif (defined('ENVIRONMENT') && file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'))
joelcox1bfd9fa2011-01-16 18:49:39 +01001102 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001103 include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php');
joelcox1bfd9fa2011-01-16 18:49:39 +01001104 break;
1105 }
Andrey Andreev94af3552012-03-26 23:10:42 +03001106 elseif (file_exists($path.'config/'.strtolower($class).'.php'))
Eric Barnes5e16ec62011-01-04 17:25:23 -05001107 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001108 include($path.'config/'.strtolower($class).'.php');
Eric Barnes5e16ec62011-01-04 17:25:23 -05001109 break;
1110 }
Andrey Andreev94af3552012-03-26 23:10:42 +03001111 elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
Eric Barnes5e16ec62011-01-04 17:25:23 -05001112 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001113 include($path.'config/'.ucfirst(strtolower($class)).'.php');
Eric Barnes5e16ec62011-01-04 17:25:23 -05001114 break;
1115 }
1116 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001117 }
1118 }
Barry Mienydd671972010-10-04 16:33:58 +02001119
Alex Bilbieed944a32012-06-02 11:07:47 +01001120 if ($prefix === '')
Barry Mienydd671972010-10-04 16:33:58 +02001121 {
1122 if (class_exists('CI_'.$class))
Derek Allard2067d1a2008-11-13 22:59:24 +00001123 {
1124 $name = 'CI_'.$class;
1125 }
Barry Mienydd671972010-10-04 16:33:58 +02001126 elseif (class_exists(config_item('subclass_prefix').$class))
Derek Allard2067d1a2008-11-13 22:59:24 +00001127 {
1128 $name = config_item('subclass_prefix').$class;
1129 }
1130 else
1131 {
1132 $name = $class;
1133 }
1134 }
1135 else
1136 {
1137 $name = $prefix.$class;
1138 }
Barry Mienydd671972010-10-04 16:33:58 +02001139
Derek Allard2067d1a2008-11-13 22:59:24 +00001140 // Is the class name valid?
1141 if ( ! class_exists($name))
1142 {
Andrey Andreevd7297352012-01-07 22:53:14 +02001143 log_message('error', 'Non-existent class: '.$name);
jonnueee2df62012-07-16 13:06:16 +01001144 show_error('Non-existent class: '.$name);
Derek Allard2067d1a2008-11-13 22:59:24 +00001145 }
Barry Mienydd671972010-10-04 16:33:58 +02001146
Derek Allard2067d1a2008-11-13 22:59:24 +00001147 // Set the variable name we will assign the class to
Andrey Andreevd7297352012-01-07 22:53:14 +02001148 // Was a custom class name supplied? If so we'll use it
Derek Allard2067d1a2008-11-13 22:59:24 +00001149 $class = strtolower($class);
Barry Mienydd671972010-10-04 16:33:58 +02001150
Derek Allard2067d1a2008-11-13 22:59:24 +00001151 if (is_null($object_name))
1152 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001153 $classvar = isset($this->_ci_varmap[$class]) ? $this->_ci_varmap[$class] : $class;
Derek Allard2067d1a2008-11-13 22:59:24 +00001154 }
1155 else
1156 {
1157 $classvar = $object_name;
1158 }
1159
Barry Mienydd671972010-10-04 16:33:58 +02001160 // Save the class name and object name
Derek Allard2067d1a2008-11-13 22:59:24 +00001161 $this->_ci_classes[$class] = $classvar;
1162
Barry Mienydd671972010-10-04 16:33:58 +02001163 // Instantiate the class
Derek Allard2067d1a2008-11-13 22:59:24 +00001164 $CI =& get_instance();
1165 if ($config !== NULL)
1166 {
1167 $CI->$classvar = new $name($config);
1168 }
1169 else
Barry Mienydd671972010-10-04 16:33:58 +02001170 {
Andrey Andreeva11b16b2012-03-28 12:22:04 +03001171 $CI->$classvar = new $name();
Barry Mienydd671972010-10-04 16:33:58 +02001172 }
1173 }
1174
Derek Allard2067d1a2008-11-13 22:59:24 +00001175 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001176
Derek Allard2067d1a2008-11-13 22:59:24 +00001177 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +03001178 * CI Autoloader
Derek Allard2067d1a2008-11-13 22:59:24 +00001179 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001180 * Loads component listed in the config/autoload.php file.
Derek Allard2067d1a2008-11-13 22:59:24 +00001181 *
Andrey Andreevcdac2482012-11-03 18:09:01 +02001182 * @used-by CI_Loader::initialize()
Derek Allard2067d1a2008-11-13 22:59:24 +00001183 * @return void
1184 */
Shane Pearson665baec2011-08-22 18:52:19 -05001185 protected function _ci_autoloader()
Barry Mienydd671972010-10-04 16:33:58 +02001186 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001187 if (defined('ENVIRONMENT') && file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload.php'))
bubbafoley0ea04142011-03-17 14:55:41 -05001188 {
Shane Pearson6adfe632011-08-10 16:42:53 -05001189 include(APPPATH.'config/'.ENVIRONMENT.'/autoload.php');
bubbafoley0ea04142011-03-17 14:55:41 -05001190 }
1191 else
1192 {
Shane Pearson6adfe632011-08-10 16:42:53 -05001193 include(APPPATH.'config/autoload.php');
bubbafoley0ea04142011-03-17 14:55:41 -05001194 }
Barry Mienydd671972010-10-04 16:33:58 +02001195
Derek Allard2067d1a2008-11-13 22:59:24 +00001196 if ( ! isset($autoload))
1197 {
1198 return FALSE;
1199 }
Barry Mienydd671972010-10-04 16:33:58 +02001200
Phil Sturgeon9730c752010-12-15 10:50:15 +00001201 // Autoload packages
1202 if (isset($autoload['packages']))
1203 {
1204 foreach ($autoload['packages'] as $package_path)
1205 {
1206 $this->add_package_path($package_path);
1207 }
1208 }
1209
Derek Allard2067d1a2008-11-13 22:59:24 +00001210 // Load any custom config file
1211 if (count($autoload['config']) > 0)
Barry Mienydd671972010-10-04 16:33:58 +02001212 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001213 $CI =& get_instance();
1214 foreach ($autoload['config'] as $key => $val)
1215 {
1216 $CI->config->load($val);
1217 }
Barry Mienydd671972010-10-04 16:33:58 +02001218 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001219
Derek Jonesc6da5032010-03-09 20:44:27 -06001220 // Autoload helpers and languages
1221 foreach (array('helper', 'language') as $type)
Barry Mienydd671972010-10-04 16:33:58 +02001222 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001223 if (isset($autoload[$type]) && count($autoload[$type]) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001224 {
1225 $this->$type($autoload[$type]);
Barry Mienydd671972010-10-04 16:33:58 +02001226 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001227 }
1228
Derek Allard2067d1a2008-11-13 22:59:24 +00001229 // Load libraries
Andrey Andreev94af3552012-03-26 23:10:42 +03001230 if (isset($autoload['libraries']) && count($autoload['libraries']) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001231 {
1232 // Load the database driver.
1233 if (in_array('database', $autoload['libraries']))
1234 {
1235 $this->database();
1236 $autoload['libraries'] = array_diff($autoload['libraries'], array('database'));
1237 }
Barry Mienydd671972010-10-04 16:33:58 +02001238
Derek Allard2067d1a2008-11-13 22:59:24 +00001239 // Load all other libraries
1240 foreach ($autoload['libraries'] as $item)
1241 {
1242 $this->library($item);
1243 }
Barry Mienydd671972010-10-04 16:33:58 +02001244 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001245
Darren Hillc4e266b2011-08-30 15:40:27 -04001246 // Autoload drivers
1247 if (isset($autoload['drivers']))
1248 {
Darren Hillca3be1d2011-08-31 08:31:18 -04001249 foreach ($autoload['drivers'] as $item)
1250 {
1251 $this->driver($item);
1252 }
Darren Hillc4e266b2011-08-30 15:40:27 -04001253 }
1254
Derek Allard2067d1a2008-11-13 22:59:24 +00001255 // Autoload models
1256 if (isset($autoload['model']))
1257 {
1258 $this->model($autoload['model']);
1259 }
Barry Mienydd671972010-10-04 16:33:58 +02001260 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001261
1262 // --------------------------------------------------------------------
1263
1264 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +03001265 * CI Object to Array translator
Derek Allard2067d1a2008-11-13 22:59:24 +00001266 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001267 * Takes an object as input and converts the class variables to
1268 * an associative array with key/value pairs.
Derek Allard2067d1a2008-11-13 22:59:24 +00001269 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001270 * @param object $object Object data to translate
Derek Allard2067d1a2008-11-13 22:59:24 +00001271 * @return array
1272 */
Greg Akerf5c84022011-04-19 17:13:03 -05001273 protected function _ci_object_to_array($object)
Derek Allard2067d1a2008-11-13 22:59:24 +00001274 {
Andrey Andreev94af3552012-03-26 23:10:42 +03001275 return is_object($object) ? get_object_vars($object) : $object;
Derek Allard2067d1a2008-11-13 22:59:24 +00001276 }
1277
1278 // --------------------------------------------------------------------
1279
1280 /**
Andrey Andreeved4b2582012-10-27 17:46:52 +03001281 * CI Component getter
Derek Jones32bf1862010-03-02 13:46:07 -06001282 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001283 * Get a reference to a specific library or model.
1284 *
1285 * @param string $component Component name
Derek Jones32bf1862010-03-02 13:46:07 -06001286 * @return bool
1287 */
Greg Akerf5c84022011-04-19 17:13:03 -05001288 protected function &_ci_get_component($component)
Derek Jones32bf1862010-03-02 13:46:07 -06001289 {
Pascal Kriete89ace432010-11-10 15:49:10 -05001290 $CI =& get_instance();
1291 return $CI->$component;
Derek Jones32bf1862010-03-02 13:46:07 -06001292 }
1293
1294 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001295
Derek Jones32bf1862010-03-02 13:46:07 -06001296 /**
1297 * Prep filename
1298 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001299 * This function prepares filenames of various items to
1300 * make their loading more reliable.
Derek Jones32bf1862010-03-02 13:46:07 -06001301 *
Andrey Andreeved4b2582012-10-27 17:46:52 +03001302 * @param string|string[] $filename Filename(s)
1303 * @param string $extension Filename extension
Derek Jones32bf1862010-03-02 13:46:07 -06001304 * @return array
1305 */
Greg Akerf5c84022011-04-19 17:13:03 -05001306 protected function _ci_prep_filename($filename, $extension)
Derek Jones32bf1862010-03-02 13:46:07 -06001307 {
1308 if ( ! is_array($filename))
Barry Mienydd671972010-10-04 16:33:58 +02001309 {
Andrey Andreevd47baab2012-01-09 16:56:46 +02001310 return array(strtolower(str_replace(array($extension, '.php'), '', $filename).$extension));
Derek Jones32bf1862010-03-02 13:46:07 -06001311 }
1312 else
1313 {
1314 foreach ($filename as $key => $val)
1315 {
Andrey Andreevd47baab2012-01-09 16:56:46 +02001316 $filename[$key] = strtolower(str_replace(array($extension, '.php'), '', $val).$extension);
Derek Jones32bf1862010-03-02 13:46:07 -06001317 }
Barry Mienydd671972010-10-04 16:33:58 +02001318
Derek Jones32bf1862010-03-02 13:46:07 -06001319 return $filename;
1320 }
1321 }
Andrey Andreev94af3552012-03-26 23:10:42 +03001322
Derek Allard2067d1a2008-11-13 22:59:24 +00001323}
1324
1325/* End of file Loader.php */
Andrey Andreev9438e262012-10-05 13:16:27 +03001326/* Location: ./system/core/Loader.php */