blob: 839caba08a2c1d08e0738da222d09b09a18bba27 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
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 Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, 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 Andreevfe9309d2015-01-09 17:48:58 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @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
Claudio Galdiolo72d63cd2014-12-22 15:18:14 -0500148 * overridden 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 * ------------------------------------------------------
Andrey Andreev17254322015-01-30 15:53:28 +0200162 * Should we use a Composer autoloader?
163 * ------------------------------------------------------
164 */
165 if ($composer_autoload = config_item('composer_autoload'))
166 {
167 if ($composer_autoload === TRUE && file_exists(APPPATH.'vendor/autoload.php'))
168 {
169 require_once(APPPATH.'vendor/autoload.php');
170 }
171 elseif (file_exists($composer_autoload))
172 {
173 require_once($composer_autoload);
174 }
175 }
176
177/*
178 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500179 * Start the timer... tick tock tick tock...
Derek Allard2067d1a2008-11-13 22:59:24 +0000180 * ------------------------------------------------------
181 */
Derek Jones218876c2010-03-02 13:11:00 -0600182 $BM =& load_class('Benchmark', 'core');
183 $BM->mark('total_execution_time_start');
184 $BM->mark('loading_time:_base_classes_start');
Derek Allard2067d1a2008-11-13 22:59:24 +0000185
186/*
187 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500188 * Instantiate the hooks class
Derek Allard2067d1a2008-11-13 22:59:24 +0000189 * ------------------------------------------------------
190 */
Derek Jones218876c2010-03-02 13:11:00 -0600191 $EXT =& load_class('Hooks', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000192
193/*
194 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500195 * Is there a "pre_system" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000196 * ------------------------------------------------------
197 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300198 $EXT->call_hook('pre_system');
Derek Allard2067d1a2008-11-13 22:59:24 +0000199
200/*
201 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500202 * Instantiate the config class
Derek Allard2067d1a2008-11-13 22:59:24 +0000203 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200204 *
205 * Note: It is important that Config is loaded first as
206 * most other classes depend on it either directly or by
207 * depending on another class that uses it.
208 *
Barry Mienydd671972010-10-04 16:33:58 +0200209 */
Derek Jones218876c2010-03-02 13:11:00 -0600210 $CFG =& load_class('Config', 'core');
211
212 // Do we have any manually set config items in the index.php file?
Andrey Andreev5232ba02012-10-27 15:25:05 +0300213 if (isset($assign_to_config) && is_array($assign_to_config))
Barry Mienydd671972010-10-04 16:33:58 +0200214 {
Andrey Andreev5232ba02012-10-27 15:25:05 +0300215 foreach ($assign_to_config as $key => $value)
216 {
217 $CFG->set_item($key, $value);
218 }
Derek Jones218876c2010-03-02 13:11:00 -0600219 }
220
221/*
222 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200223 * Important charset-related stuff
Derek Jones218876c2010-03-02 13:11:00 -0600224 * ------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200225 *
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200226 * Configure mbstring and/or iconv if they are enabled
227 * and set MB_ENABLED and ICONV_ENABLED constants, so
228 * that we don't repeatedly do extension_loaded() or
229 * function_exists() calls.
Barry Mienydd671972010-10-04 16:33:58 +0200230 *
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200231 * Note: UTF-8 class depends on this. It used to be done
232 * in it's constructor, but it's _not_ class-specific.
233 *
234 */
235 $charset = strtoupper(config_item('charset'));
Andrey Andreev51593f42014-05-07 00:06:31 +0300236 ini_set('default_charset', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200237
238 if (extension_loaded('mbstring'))
239 {
240 define('MB_ENABLED', TRUE);
Andrey Andreev1ffa2232014-05-09 12:30:59 +0300241 // mbstring.internal_encoding is deprecated starting with PHP 5.6
242 // and it's usage triggers E_DEPRECATED messages.
243 @ini_set('mbstring.internal_encoding', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200244 // This is required for mb_convert_encoding() to strip invalid characters.
245 // That's utilized by CI_Utf8, but it's also done for consistency with iconv.
246 mb_substitute_character('none');
247 }
248 else
249 {
250 define('MB_ENABLED', FALSE);
251 }
252
253 // There's an ICONV_IMPL constant, but the PHP manual says that using
254 // iconv's predefined constants is "strongly discouraged".
255 if (extension_loaded('iconv'))
256 {
257 define('ICONV_ENABLED', TRUE);
Andrey Andreev51593f42014-05-07 00:06:31 +0300258 // iconv.internal_encoding is deprecated starting with PHP 5.6
259 // and it's usage triggers E_DEPRECATED messages.
260 @ini_set('iconv.internal_encoding', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200261 }
262 else
263 {
264 define('ICONV_ENABLED', FALSE);
265 }
266
Andrey Andreev51593f42014-05-07 00:06:31 +0300267 if (is_php('5.6'))
268 {
269 ini_set('php.internal_encoding', $charset);
270 }
271
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200272/*
273 * ------------------------------------------------------
Andrey Andreev3fd1b382014-02-13 03:01:31 +0200274 * Load compatibility features
275 * ------------------------------------------------------
276 */
277
Andrey Andreev376b2152014-02-13 12:35:52 +0200278 require_once(BASEPATH.'core/compat/mbstring.php');
Andrey Andreev9a152a92014-02-18 16:29:53 +0200279 require_once(BASEPATH.'core/compat/hash.php');
Andrey Andreev376b2152014-02-13 12:35:52 +0200280 require_once(BASEPATH.'core/compat/password.php');
Andrey Andreev5b3fe7c2014-07-07 10:55:53 +0300281 require_once(BASEPATH.'core/compat/standard.php');
Andrey Andreev3fd1b382014-02-13 03:01:31 +0200282
283/*
284 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200285 * Instantiate the UTF-8 class
286 * ------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000287 */
Pascal Krieteaaec1e42011-01-20 00:01:21 -0500288 $UNI =& load_class('Utf8', 'core');
Barry Mienydd671972010-10-04 16:33:58 +0200289
Derek Jones218876c2010-03-02 13:11:00 -0600290/*
291 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500292 * Instantiate the URI class
Derek Jones218876c2010-03-02 13:11:00 -0600293 * ------------------------------------------------------
294 */
295 $URI =& load_class('URI', 'core');
296
297/*
298 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500299 * Instantiate the routing class and set the routing
Derek Jones218876c2010-03-02 13:11:00 -0600300 * ------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200301 */
Andrey Andreevc26b9eb2014-02-24 11:31:36 +0200302 $RTR =& load_class('Router', 'core', isset($routing) ? $routing : NULL);
Barry Mienydd671972010-10-04 16:33:58 +0200303
Derek Jones218876c2010-03-02 13:11:00 -0600304/*
305 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500306 * Instantiate the output class
Derek Jones218876c2010-03-02 13:11:00 -0600307 * ------------------------------------------------------
308 */
309 $OUT =& load_class('Output', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000310
311/*
312 * ------------------------------------------------------
Andrey Andreev9c5c24a2012-01-07 18:51:21 +0200313 * Is there a valid cache file? If so, we're done...
Derek Allard2067d1a2008-11-13 22:59:24 +0000314 * ------------------------------------------------------
315 */
Andrey Andreevc26b9eb2014-02-24 11:31:36 +0200316 if ($EXT->call_hook('cache_override') === FALSE && $OUT->_display_cache($CFG, $URI) === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000317 {
Andrey Andreev9c5c24a2012-01-07 18:51:21 +0200318 exit;
Derek Allard2067d1a2008-11-13 22:59:24 +0000319 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000320
321/*
Pascal Kriete14a0ac62011-04-05 14:55:56 -0400322 * -----------------------------------------------------
323 * Load the security class for xss and csrf support
324 * -----------------------------------------------------
325 */
326 $SEC =& load_class('Security', 'core');
327
328/*
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500330 * Load the Input class and sanitize globals
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 * ------------------------------------------------------
332 */
Barry Mienydd671972010-10-04 16:33:58 +0200333 $IN =& load_class('Input', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000334
Derek Jones218876c2010-03-02 13:11:00 -0600335/*
336 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500337 * Load the Language class
Derek Jones218876c2010-03-02 13:11:00 -0600338 * ------------------------------------------------------
339 */
340 $LANG =& load_class('Lang', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000341
342/*
343 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500344 * Load the app controller and local controller
Derek Allard2067d1a2008-11-13 22:59:24 +0000345 * ------------------------------------------------------
346 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000347 */
Derek Jones218876c2010-03-02 13:11:00 -0600348 // Load the base controller class
Andrey Andreev30d53242014-01-16 14:41:46 +0200349 require_once BASEPATH.'core/Controller.php';
Barry Mienydd671972010-10-04 16:33:58 +0200350
Timothy Warrenad475052012-04-19 13:21:06 -0400351 /**
352 * Reference to the CI_Controller method.
353 *
354 * Returns current CI instance object
355 *
356 * @return object
357 */
Greg Aker4abfa682010-11-10 14:44:26 -0600358 function &get_instance()
359 {
360 return CI_Controller::get_instance();
361 }
362
Greg Aker3a746652011-04-19 10:59:47 -0500363 if (file_exists(APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php'))
Greg Akerfa281352010-03-22 14:41:27 -0500364 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200365 require_once APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php';
Greg Akerfa281352010-03-22 14:41:27 -0500366 }
Barry Mienydd671972010-10-04 16:33:58 +0200367
Derek Jones218876c2010-03-02 13:11:00 -0600368 // Set a mark point for benchmarking
369 $BM->mark('loading_time:_base_classes_end');
Derek Allard2067d1a2008-11-13 22:59:24 +0000370
371/*
372 * ------------------------------------------------------
Andrey Andreev30d53242014-01-16 14:41:46 +0200373 * Sanity checks
Derek Allard2067d1a2008-11-13 22:59:24 +0000374 * ------------------------------------------------------
375 *
Andrey Andreev30d53242014-01-16 14:41:46 +0200376 * The Router class has already validated the request,
377 * leaving us with 3 options here:
378 *
379 * 1) an empty class name, if we reached the default
380 * controller, but it didn't exist;
381 * 2) a query string which doesn't go through a
382 * file_exists() check
383 * 3) a regular request for a non-existing page
384 *
385 * We handle all of these as a 404 error.
386 *
387 * Furthermore, none of the methods in the app controller
388 * or the loader class can be called via the URI, nor can
Andrey Andreev20292312013-07-22 14:29:10 +0300389 * controller methods that begin with an underscore.
Derek Allard2067d1a2008-11-13 22:59:24 +0000390 */
Barry Mienydd671972010-10-04 16:33:58 +0200391
Andrey Andreev30d53242014-01-16 14:41:46 +0200392 $e404 = FALSE;
393 $class = ucfirst($RTR->class);
394 $method = $RTR->method;
395
396 if (empty($class) OR ! file_exists(APPPATH.'controllers/'.$RTR->directory.$class.'.php'))
Derek Jones218876c2010-03-02 13:11:00 -0600397 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200398 $e404 = TRUE;
Andrey Andreev38e32f62012-11-03 00:16:47 +0200399 }
400 else
401 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200402 require_once(APPPATH.'controllers/'.$RTR->directory.$class.'.php');
403
404 if ( ! class_exists($class, FALSE) OR $method[0] === '_' OR method_exists('CI_Controller', $method))
405 {
406 $e404 = TRUE;
407 }
408 elseif (method_exists($class, '_remap'))
409 {
410 $params = array($method, array_slice($URI->rsegments, 2));
411 $method = '_remap';
412 }
Andrey Andreev522c7362012-11-05 16:40:32 +0200413 // WARNING: It appears that there are issues with is_callable() even in PHP 5.2!
414 // Furthermore, there are bug reports and feature/change requests related to it
415 // that make it unreliable to use in this context. Please, DO NOT change this
416 // work-around until a better alternative is available.
Andrey Andreev30d53242014-01-16 14:41:46 +0200417 elseif ( ! in_array(strtolower($method), array_map('strtolower', get_class_methods($class)), TRUE))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200418 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200419 $e404 = TRUE;
420 }
421 }
422
423 if ($e404)
424 {
425 if ( ! empty($RTR->routes['404_override']))
426 {
427 if (sscanf($RTR->routes['404_override'], '%[^/]/%s', $error_class, $error_method) !== 2)
Andrey Andreev38e32f62012-11-03 00:16:47 +0200428 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200429 $error_method = 'index';
Andrey Andreev38e32f62012-11-03 00:16:47 +0200430 }
431
Andrey Andreev30d53242014-01-16 14:41:46 +0200432 $error_class = ucfirst($error_class);
Andrey Andreev20292312013-07-22 14:29:10 +0300433
Andrey Andreev30d53242014-01-16 14:41:46 +0200434 if ( ! class_exists($error_class, FALSE))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200435 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200436 if (file_exists(APPPATH.'controllers/'.$RTR->directory.$error_class.'.php'))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200437 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200438 require_once(APPPATH.'controllers/'.$RTR->directory.$error_class.'.php');
439 $e404 = ! class_exists($error_class, FALSE);
Andrey Andreev38e32f62012-11-03 00:16:47 +0200440 }
Andrey Andreev30d53242014-01-16 14:41:46 +0200441 // Were we in a directory? If so, check for a global override
442 elseif ( ! empty($RTR->directory) && file_exists(APPPATH.'controllers/'.$error_class.'.php'))
443 {
444 require_once(APPPATH.'controllers/'.$error_class.'.php');
445 if (($e404 = ! class_exists($error_class, FALSE)) === FALSE)
446 {
447 $RTR->directory = '';
448 }
449 }
450 }
451 else
452 {
453 $e404 = FALSE;
Andrey Andreev38e32f62012-11-03 00:16:47 +0200454 }
455 }
456
Andrey Andreev30d53242014-01-16 14:41:46 +0200457 // Did we reset the $e404 flag? If so, set the rsegments, starting from index 1
458 if ( ! $e404)
459 {
460 $class = $error_class;
461 $method = $error_method;
462
463 $URI->rsegments = array(
464 1 => $class,
465 2 => $method
466 );
467 }
468 else
469 {
470 show_404($RTR->directory.$class.'/'.$method);
471 }
472 }
473
474 if ($method !== '_remap')
475 {
Andrey Andreev38e32f62012-11-03 00:16:47 +0200476 $params = array_slice($URI->rsegments, 2);
477 }
478
Derek Allard2067d1a2008-11-13 22:59:24 +0000479/*
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');