blob: 88e730bc327dd757d5818783be6e60f202b29472 [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 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev9c5c24a2012-01-07 18:51:21 +02008 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02009 * Copyright (c) 2014, British Columbia Institute of Technology
Andrey Andreev9c5c24a2012-01-07 18:51:21 +020010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020032 * @copyright Copyright (c) 2014, British Columbia Institute of Technology (http://bcit.ca/)
33 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.0.0
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000039
Derek Allard2067d1a2008-11-13 22:59:24 +000040/**
Derek Jones218876c2010-03-02 13:11:00 -060041 * System Initialization File
Derek Allard2067d1a2008-11-13 22:59:24 +000042 *
43 * Loads the base classes and executes the request.
44 *
45 * @package CodeIgniter
Andrey Andreev92ebfb62012-05-17 12:49:24 +030046 * @subpackage CodeIgniter
Derek Allard2067d1a2008-11-13 22:59:24 +000047 * @category Front-controller
Derek Jonesf4a4bd82011-10-20 12:18:42 -050048 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000049 * @link http://codeigniter.com/user_guide/
50 */
51
Phil Sturgeond8ef6302011-08-14 12:10:55 -060052/**
53 * CodeIgniter Version
54 *
Timothy Warren48a7fbb2012-04-23 11:58:16 -040055 * @var string
Phil Sturgeond8ef6302011-08-14 12:10:55 -060056 *
Derek Jones218876c2010-03-02 13:11:00 -060057 */
Derek Jonesf4a4bd82011-10-20 12:18:42 -050058 define('CI_VERSION', '3.0-dev');
Andrey Andreevb6fbcbe2013-11-17 18:06:18 +020059
Derek Allard2067d1a2008-11-13 22:59:24 +000060/*
61 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050062 * Load the framework constants
Derek Allard2067d1a2008-11-13 22:59:24 +000063 * ------------------------------------------------------
64 */
Andrey Andreevdb529ca2013-01-28 11:00:02 +020065 if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/constants.php'))
Greg Akerd96f8822011-12-27 16:23:47 -060066 {
Andrey Andreev30d53242014-01-16 14:41:46 +020067 require_once(APPPATH.'config/'.ENVIRONMENT.'/constants.php');
Greg Akerd96f8822011-12-27 16:23:47 -060068 }
Andrey Andreevb6fbcbe2013-11-17 18:06:18 +020069
Andrey Andreev30d53242014-01-16 14:41:46 +020070 require_once(APPPATH.'config/constants.php');
Derek Allard2067d1a2008-11-13 22:59:24 +000071
72/*
73 * ------------------------------------------------------
josephok1095d112013-11-16 09:33:37 +080074 * Load the global functions
75 * ------------------------------------------------------
76 */
77 require_once(BASEPATH.'core/Common.php');
78
Andrey Andreevb78a8c72014-04-15 17:21:16 +030079
80/*
81 * ------------------------------------------------------
82 * Security procedures
83 * ------------------------------------------------------
84 */
85
86if ( ! is_php('5.4'))
87{
88 ini_set('magic_quotes_runtime', 0);
89
90 if ((bool) ini_get('register_globals'))
91 {
92 $_protected = array(
93 '_SERVER',
94 '_GET',
95 '_POST',
96 '_FILES',
97 '_REQUEST',
98 '_SESSION',
99 '_ENV',
100 '_COOKIE',
101 'GLOBALS',
102 'HTTP_RAW_POST_DATA',
vlakoffde70dbb2014-04-15 16:46:03 +0200103 'system_path',
Andrey Andreevb78a8c72014-04-15 17:21:16 +0300104 'application_folder',
105 'view_folder',
106 '_protected',
107 '_registered'
108 );
109
110 $_registered = ini_get('variables_order');
111 foreach (array('E' => '_ENV', 'G' => '_GET', 'P' => '_POST', 'C' => '_COOKIE', 'S' => '_SERVER') as $key => $superglobal)
112 {
113 if (strpos($_registered, $key) === FALSE)
114 {
115 continue;
116 }
117
118 foreach (array_keys($$superglobal) as $var)
119 {
120 if (isset($GLOBALS[$var]) && ! in_array($var, $_protected, TRUE))
121 {
122 $GLOBALS[$var] = NULL;
123 }
124 }
125 }
126 }
127}
128
129
josephok1095d112013-11-16 09:33:37 +0800130/*
131 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500132 * Define a custom error handler so we can log PHP errors
Derek Allard2067d1a2008-11-13 22:59:24 +0000133 * ------------------------------------------------------
134 */
Andrey Andreev4b838af2014-10-28 23:46:45 +0200135 set_error_handler('_error_handler');
136 set_exception_handler('_exception_handler');
Kaiwang Chen21fe9da2013-09-11 13:09:41 +0800137 register_shutdown_function('_shutdown_handler');
Barry Mienydd671972010-10-04 16:33:58 +0200138
Derek Jones218876c2010-03-02 13:11:00 -0600139/*
140 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500141 * Set the subclass_prefix
Derek Jones218876c2010-03-02 13:11:00 -0600142 * ------------------------------------------------------
143 *
Barry Mienydd671972010-10-04 16:33:58 +0200144 * Normally the "subclass_prefix" is set in the config file.
145 * The subclass prefix allows CI to know if a core class is
Derek Jones218876c2010-03-02 13:11:00 -0600146 * being extended via a library in the local application
Barry Mienydd671972010-10-04 16:33:58 +0200147 * "libraries" folder. Since CI allows config items to be
vlakoff8d70c0a2013-08-17 07:31:29 +0200148 * overriden via data set in the main index.php file,
Barry Mienydd671972010-10-04 16:33:58 +0200149 * before proceeding we need to know if a subclass_prefix
Andrey Andreev9c5c24a2012-01-07 18:51:21 +0200150 * override exists. If so, we will set this value now,
Derek Jones218876c2010-03-02 13:11:00 -0600151 * before any classes are loaded
Barry Mienydd671972010-10-04 16:33:58 +0200152 * Note: Since the config file data is cached it doesn't
Derek Jones218876c2010-03-02 13:11:00 -0600153 * hurt to load it here.
154 */
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300155 if ( ! empty($assign_to_config['subclass_prefix']))
Derek Jones218876c2010-03-02 13:11:00 -0600156 {
157 get_config(array('subclass_prefix' => $assign_to_config['subclass_prefix']));
158 }
Eric Barnesc5bf6162011-01-30 21:17:11 -0500159
Pascal Krietef566af52010-11-09 13:03:26 -0500160/*
161 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500162 * Start the timer... tick tock tick tock...
Derek Allard2067d1a2008-11-13 22:59:24 +0000163 * ------------------------------------------------------
164 */
Derek Jones218876c2010-03-02 13:11:00 -0600165 $BM =& load_class('Benchmark', 'core');
166 $BM->mark('total_execution_time_start');
167 $BM->mark('loading_time:_base_classes_start');
Derek Allard2067d1a2008-11-13 22:59:24 +0000168
169/*
170 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500171 * Instantiate the hooks class
Derek Allard2067d1a2008-11-13 22:59:24 +0000172 * ------------------------------------------------------
173 */
Derek Jones218876c2010-03-02 13:11:00 -0600174 $EXT =& load_class('Hooks', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000175
176/*
177 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500178 * Is there a "pre_system" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000179 * ------------------------------------------------------
180 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300181 $EXT->call_hook('pre_system');
Derek Allard2067d1a2008-11-13 22:59:24 +0000182
183/*
184 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500185 * Instantiate the config class
Derek Allard2067d1a2008-11-13 22:59:24 +0000186 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200187 *
188 * Note: It is important that Config is loaded first as
189 * most other classes depend on it either directly or by
190 * depending on another class that uses it.
191 *
Barry Mienydd671972010-10-04 16:33:58 +0200192 */
Derek Jones218876c2010-03-02 13:11:00 -0600193 $CFG =& load_class('Config', 'core');
194
195 // Do we have any manually set config items in the index.php file?
Andrey Andreev5232ba02012-10-27 15:25:05 +0300196 if (isset($assign_to_config) && is_array($assign_to_config))
Barry Mienydd671972010-10-04 16:33:58 +0200197 {
Andrey Andreev5232ba02012-10-27 15:25:05 +0300198 foreach ($assign_to_config as $key => $value)
199 {
200 $CFG->set_item($key, $value);
201 }
Derek Jones218876c2010-03-02 13:11:00 -0600202 }
203
204/*
205 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200206 * Important charset-related stuff
Derek Jones218876c2010-03-02 13:11:00 -0600207 * ------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200208 *
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200209 * Configure mbstring and/or iconv if they are enabled
210 * and set MB_ENABLED and ICONV_ENABLED constants, so
211 * that we don't repeatedly do extension_loaded() or
212 * function_exists() calls.
Barry Mienydd671972010-10-04 16:33:58 +0200213 *
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200214 * Note: UTF-8 class depends on this. It used to be done
215 * in it's constructor, but it's _not_ class-specific.
216 *
217 */
218 $charset = strtoupper(config_item('charset'));
Andrey Andreev51593f42014-05-07 00:06:31 +0300219 ini_set('default_charset', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200220
221 if (extension_loaded('mbstring'))
222 {
223 define('MB_ENABLED', TRUE);
Andrey Andreev1ffa2232014-05-09 12:30:59 +0300224 // mbstring.internal_encoding is deprecated starting with PHP 5.6
225 // and it's usage triggers E_DEPRECATED messages.
226 @ini_set('mbstring.internal_encoding', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200227 // This is required for mb_convert_encoding() to strip invalid characters.
228 // That's utilized by CI_Utf8, but it's also done for consistency with iconv.
229 mb_substitute_character('none');
230 }
231 else
232 {
233 define('MB_ENABLED', FALSE);
234 }
235
236 // There's an ICONV_IMPL constant, but the PHP manual says that using
237 // iconv's predefined constants is "strongly discouraged".
238 if (extension_loaded('iconv'))
239 {
240 define('ICONV_ENABLED', TRUE);
Andrey Andreev51593f42014-05-07 00:06:31 +0300241 // iconv.internal_encoding is deprecated starting with PHP 5.6
242 // and it's usage triggers E_DEPRECATED messages.
243 @ini_set('iconv.internal_encoding', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200244 }
245 else
246 {
247 define('ICONV_ENABLED', FALSE);
248 }
249
Andrey Andreev51593f42014-05-07 00:06:31 +0300250 if (is_php('5.6'))
251 {
252 ini_set('php.internal_encoding', $charset);
253 }
254
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200255/*
256 * ------------------------------------------------------
Andrey Andreev3fd1b382014-02-13 03:01:31 +0200257 * Load compatibility features
258 * ------------------------------------------------------
259 */
260
Andrey Andreev376b2152014-02-13 12:35:52 +0200261 require_once(BASEPATH.'core/compat/mbstring.php');
Andrey Andreev9a152a92014-02-18 16:29:53 +0200262 require_once(BASEPATH.'core/compat/hash.php');
Andrey Andreev376b2152014-02-13 12:35:52 +0200263 require_once(BASEPATH.'core/compat/password.php');
Andrey Andreev5b3fe7c2014-07-07 10:55:53 +0300264 require_once(BASEPATH.'core/compat/standard.php');
Andrey Andreev3fd1b382014-02-13 03:01:31 +0200265
266/*
267 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200268 * Instantiate the UTF-8 class
269 * ------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000270 */
Pascal Krieteaaec1e42011-01-20 00:01:21 -0500271 $UNI =& load_class('Utf8', 'core');
Barry Mienydd671972010-10-04 16:33:58 +0200272
Derek Jones218876c2010-03-02 13:11:00 -0600273/*
274 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500275 * Instantiate the URI class
Derek Jones218876c2010-03-02 13:11:00 -0600276 * ------------------------------------------------------
277 */
278 $URI =& load_class('URI', 'core');
279
280/*
281 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500282 * Instantiate the routing class and set the routing
Derek Jones218876c2010-03-02 13:11:00 -0600283 * ------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200284 */
Andrey Andreevc26b9eb2014-02-24 11:31:36 +0200285 $RTR =& load_class('Router', 'core', isset($routing) ? $routing : NULL);
Barry Mienydd671972010-10-04 16:33:58 +0200286
Derek Jones218876c2010-03-02 13:11:00 -0600287/*
288 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500289 * Instantiate the output class
Derek Jones218876c2010-03-02 13:11:00 -0600290 * ------------------------------------------------------
291 */
292 $OUT =& load_class('Output', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000293
294/*
295 * ------------------------------------------------------
Andrey Andreev9c5c24a2012-01-07 18:51:21 +0200296 * Is there a valid cache file? If so, we're done...
Derek Allard2067d1a2008-11-13 22:59:24 +0000297 * ------------------------------------------------------
298 */
Andrey Andreevc26b9eb2014-02-24 11:31:36 +0200299 if ($EXT->call_hook('cache_override') === FALSE && $OUT->_display_cache($CFG, $URI) === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000300 {
Andrey Andreev9c5c24a2012-01-07 18:51:21 +0200301 exit;
Derek Allard2067d1a2008-11-13 22:59:24 +0000302 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000303
304/*
Pascal Kriete14a0ac62011-04-05 14:55:56 -0400305 * -----------------------------------------------------
306 * Load the security class for xss and csrf support
307 * -----------------------------------------------------
308 */
309 $SEC =& load_class('Security', 'core');
310
311/*
Derek Allard2067d1a2008-11-13 22:59:24 +0000312 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500313 * Load the Input class and sanitize globals
Derek Allard2067d1a2008-11-13 22:59:24 +0000314 * ------------------------------------------------------
315 */
Barry Mienydd671972010-10-04 16:33:58 +0200316 $IN =& load_class('Input', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000317
Derek Jones218876c2010-03-02 13:11:00 -0600318/*
319 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500320 * Load the Language class
Derek Jones218876c2010-03-02 13:11:00 -0600321 * ------------------------------------------------------
322 */
323 $LANG =& load_class('Lang', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000324
325/*
326 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500327 * Load the app controller and local controller
Derek Allard2067d1a2008-11-13 22:59:24 +0000328 * ------------------------------------------------------
329 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000330 */
Derek Jones218876c2010-03-02 13:11:00 -0600331 // Load the base controller class
Andrey Andreev30d53242014-01-16 14:41:46 +0200332 require_once BASEPATH.'core/Controller.php';
Barry Mienydd671972010-10-04 16:33:58 +0200333
Timothy Warrenad475052012-04-19 13:21:06 -0400334 /**
335 * Reference to the CI_Controller method.
336 *
337 * Returns current CI instance object
338 *
339 * @return object
340 */
Greg Aker4abfa682010-11-10 14:44:26 -0600341 function &get_instance()
342 {
343 return CI_Controller::get_instance();
344 }
345
Greg Aker3a746652011-04-19 10:59:47 -0500346 if (file_exists(APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php'))
Greg Akerfa281352010-03-22 14:41:27 -0500347 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200348 require_once APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php';
Greg Akerfa281352010-03-22 14:41:27 -0500349 }
Barry Mienydd671972010-10-04 16:33:58 +0200350
Derek Jones218876c2010-03-02 13:11:00 -0600351 // Set a mark point for benchmarking
352 $BM->mark('loading_time:_base_classes_end');
Derek Allard2067d1a2008-11-13 22:59:24 +0000353
354/*
355 * ------------------------------------------------------
Andrey Andreev30d53242014-01-16 14:41:46 +0200356 * Sanity checks
Derek Allard2067d1a2008-11-13 22:59:24 +0000357 * ------------------------------------------------------
358 *
Andrey Andreev30d53242014-01-16 14:41:46 +0200359 * The Router class has already validated the request,
360 * leaving us with 3 options here:
361 *
362 * 1) an empty class name, if we reached the default
363 * controller, but it didn't exist;
364 * 2) a query string which doesn't go through a
365 * file_exists() check
366 * 3) a regular request for a non-existing page
367 *
368 * We handle all of these as a 404 error.
369 *
370 * Furthermore, none of the methods in the app controller
371 * or the loader class can be called via the URI, nor can
Andrey Andreev20292312013-07-22 14:29:10 +0300372 * controller methods that begin with an underscore.
Derek Allard2067d1a2008-11-13 22:59:24 +0000373 */
Barry Mienydd671972010-10-04 16:33:58 +0200374
Andrey Andreev30d53242014-01-16 14:41:46 +0200375 $e404 = FALSE;
376 $class = ucfirst($RTR->class);
377 $method = $RTR->method;
378
379 if (empty($class) OR ! file_exists(APPPATH.'controllers/'.$RTR->directory.$class.'.php'))
Derek Jones218876c2010-03-02 13:11:00 -0600380 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200381 $e404 = TRUE;
Andrey Andreev38e32f62012-11-03 00:16:47 +0200382 }
383 else
384 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200385 require_once(APPPATH.'controllers/'.$RTR->directory.$class.'.php');
386
387 if ( ! class_exists($class, FALSE) OR $method[0] === '_' OR method_exists('CI_Controller', $method))
388 {
389 $e404 = TRUE;
390 }
391 elseif (method_exists($class, '_remap'))
392 {
393 $params = array($method, array_slice($URI->rsegments, 2));
394 $method = '_remap';
395 }
Andrey Andreev522c7362012-11-05 16:40:32 +0200396 // WARNING: It appears that there are issues with is_callable() even in PHP 5.2!
397 // Furthermore, there are bug reports and feature/change requests related to it
398 // that make it unreliable to use in this context. Please, DO NOT change this
399 // work-around until a better alternative is available.
Andrey Andreev30d53242014-01-16 14:41:46 +0200400 elseif ( ! in_array(strtolower($method), array_map('strtolower', get_class_methods($class)), TRUE))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200401 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200402 $e404 = TRUE;
403 }
404 }
405
406 if ($e404)
407 {
408 if ( ! empty($RTR->routes['404_override']))
409 {
410 if (sscanf($RTR->routes['404_override'], '%[^/]/%s', $error_class, $error_method) !== 2)
Andrey Andreev38e32f62012-11-03 00:16:47 +0200411 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200412 $error_method = 'index';
Andrey Andreev38e32f62012-11-03 00:16:47 +0200413 }
414
Andrey Andreev30d53242014-01-16 14:41:46 +0200415 $error_class = ucfirst($error_class);
Andrey Andreev20292312013-07-22 14:29:10 +0300416
Andrey Andreev30d53242014-01-16 14:41:46 +0200417 if ( ! class_exists($error_class, FALSE))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200418 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200419 if (file_exists(APPPATH.'controllers/'.$RTR->directory.$error_class.'.php'))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200420 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200421 require_once(APPPATH.'controllers/'.$RTR->directory.$error_class.'.php');
422 $e404 = ! class_exists($error_class, FALSE);
Andrey Andreev38e32f62012-11-03 00:16:47 +0200423 }
Andrey Andreev30d53242014-01-16 14:41:46 +0200424 // Were we in a directory? If so, check for a global override
425 elseif ( ! empty($RTR->directory) && file_exists(APPPATH.'controllers/'.$error_class.'.php'))
426 {
427 require_once(APPPATH.'controllers/'.$error_class.'.php');
428 if (($e404 = ! class_exists($error_class, FALSE)) === FALSE)
429 {
430 $RTR->directory = '';
431 }
432 }
433 }
434 else
435 {
436 $e404 = FALSE;
Andrey Andreev38e32f62012-11-03 00:16:47 +0200437 }
438 }
439
Andrey Andreev30d53242014-01-16 14:41:46 +0200440 // Did we reset the $e404 flag? If so, set the rsegments, starting from index 1
441 if ( ! $e404)
442 {
443 $class = $error_class;
444 $method = $error_method;
445
446 $URI->rsegments = array(
447 1 => $class,
448 2 => $method
449 );
450 }
451 else
452 {
453 show_404($RTR->directory.$class.'/'.$method);
454 }
455 }
456
457 if ($method !== '_remap')
458 {
Andrey Andreev38e32f62012-11-03 00:16:47 +0200459 $params = array_slice($URI->rsegments, 2);
460 }
461
Derek Allard2067d1a2008-11-13 22:59:24 +0000462/*
463 * ------------------------------------------------------
Andrey Andreeved86ee12014-07-11 19:48:37 +0300464 * Should we use a Composer autoloader?
465 * ------------------------------------------------------
466 */
Andrey Andreev286f9e12014-10-06 01:54:21 +0300467 if ($composer_autoload = config_item('composer_autoload'))
Andrey Andreeved86ee12014-07-11 19:48:37 +0300468 {
469 if ($composer_autoload === TRUE && file_exists(APPPATH.'vendor/autoload.php'))
470 {
471 require_once(APPPATH.'vendor/autoload.php');
472 }
473 elseif (file_exists($composer_autoload))
474 {
475 require_once($composer_autoload);
476 }
477 }
478
479/*
480 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500481 * Is there a "pre_controller" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000482 * ------------------------------------------------------
483 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300484 $EXT->call_hook('pre_controller');
Derek Allard2067d1a2008-11-13 22:59:24 +0000485
486/*
487 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500488 * Instantiate the requested controller
Derek Allard2067d1a2008-11-13 22:59:24 +0000489 * ------------------------------------------------------
490 */
Derek Jones218876c2010-03-02 13:11:00 -0600491 // Mark a start point so we can benchmark the controller
492 $BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_start');
Barry Mienydd671972010-10-04 16:33:58 +0200493
Derek Jones218876c2010-03-02 13:11:00 -0600494 $CI = new $class();
495
496/*
497 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500498 * Is there a "post_controller_constructor" hook?
Derek Jones218876c2010-03-02 13:11:00 -0600499 * ------------------------------------------------------
500 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300501 $EXT->call_hook('post_controller_constructor');
Derek Jones218876c2010-03-02 13:11:00 -0600502
503/*
504 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500505 * Call the requested method
Derek Jones218876c2010-03-02 13:11:00 -0600506 * ------------------------------------------------------
507 */
Andrey Andreev38e32f62012-11-03 00:16:47 +0200508 call_user_func_array(array(&$CI, $method), $params);
Derek Allard2067d1a2008-11-13 22:59:24 +0000509
Derek Jones218876c2010-03-02 13:11:00 -0600510 // Mark a benchmark end point
511 $BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end');
Derek Allard2067d1a2008-11-13 22:59:24 +0000512
513/*
514 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500515 * Is there a "post_controller" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000516 * ------------------------------------------------------
517 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300518 $EXT->call_hook('post_controller');
Derek Allard2067d1a2008-11-13 22:59:24 +0000519
520/*
521 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500522 * Send the final rendered output to the browser
Derek Allard2067d1a2008-11-13 22:59:24 +0000523 * ------------------------------------------------------
524 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300525 if ($EXT->call_hook('display_override') === FALSE)
Derek Jones218876c2010-03-02 13:11:00 -0600526 {
527 $OUT->_display();
528 }
Barry Mienydd671972010-10-04 16:33:58 +0200529
Derek Allard2067d1a2008-11-13 22:59:24 +0000530/*
531 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500532 * Is there a "post_system" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000533 * ------------------------------------------------------
534 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300535 $EXT->call_hook('post_system');
Derek Allard2067d1a2008-11-13 22:59:24 +0000536
Derek Allard2067d1a2008-11-13 22:59:24 +0000537/* End of file CodeIgniter.php */
Andrey Andreevb6fbcbe2013-11-17 18:06:18 +0200538/* Location: ./system/core/CodeIgniter.php */