blob: bf41ab2a21fc810cbb4bec02c032949a9dd3b224 [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 Andreev125ef472016-01-11 12:33:00 +02009 * Copyright (c) 2014 - 2016, 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
Andrey Andreev1924e872016-01-11 12:55:34 +020031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
Andrey Andreev125ef472016-01-11 12:33:00 +020032 * @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
Andrey Andreevbd202c92016-01-11 12:50:18 +020034 * @link https://codeigniter.com
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020035 * @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
Andrey Andreevbd202c92016-01-11 12:50:18 +020049 * @link https://codeigniter.com/user_guide/
Derek Allard2067d1a2008-11-13 22:59:24 +000050 */
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 */
Andrey Andreev4307bff2016-01-13 02:13:10 +020058 define('CI_VERSION', '3.0.5-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 {
Andrey Andreev2eb580c2015-01-30 16:41:43 +0200167 if ($composer_autoload === TRUE)
Andrey Andreev17254322015-01-30 15:53:28 +0200168 {
Andrey Andreev2eb580c2015-01-30 16:41:43 +0200169 file_exists(APPPATH.'vendor/autoload.php')
170 ? require_once(APPPATH.'vendor/autoload.php')
171 : log_message('error', '$config[\'composer_autoload\'] is set to TRUE but '.APPPATH.'vendor/autoload.php was not found.');
Andrey Andreev17254322015-01-30 15:53:28 +0200172 }
173 elseif (file_exists($composer_autoload))
174 {
175 require_once($composer_autoload);
176 }
Andrey Andreev2eb580c2015-01-30 16:41:43 +0200177 else
178 {
179 log_message('error', 'Could not find the specified $config[\'composer_autoload\'] path: '.$composer_autoload);
180 }
Andrey Andreev17254322015-01-30 15:53:28 +0200181 }
182
183/*
184 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500185 * Start the timer... tick tock tick tock...
Derek Allard2067d1a2008-11-13 22:59:24 +0000186 * ------------------------------------------------------
187 */
Derek Jones218876c2010-03-02 13:11:00 -0600188 $BM =& load_class('Benchmark', 'core');
189 $BM->mark('total_execution_time_start');
190 $BM->mark('loading_time:_base_classes_start');
Derek Allard2067d1a2008-11-13 22:59:24 +0000191
192/*
193 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500194 * Instantiate the hooks class
Derek Allard2067d1a2008-11-13 22:59:24 +0000195 * ------------------------------------------------------
196 */
Derek Jones218876c2010-03-02 13:11:00 -0600197 $EXT =& load_class('Hooks', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000198
199/*
200 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500201 * Is there a "pre_system" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000202 * ------------------------------------------------------
203 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300204 $EXT->call_hook('pre_system');
Derek Allard2067d1a2008-11-13 22:59:24 +0000205
206/*
207 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500208 * Instantiate the config class
Derek Allard2067d1a2008-11-13 22:59:24 +0000209 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200210 *
211 * Note: It is important that Config is loaded first as
212 * most other classes depend on it either directly or by
213 * depending on another class that uses it.
214 *
Barry Mienydd671972010-10-04 16:33:58 +0200215 */
Derek Jones218876c2010-03-02 13:11:00 -0600216 $CFG =& load_class('Config', 'core');
217
218 // Do we have any manually set config items in the index.php file?
Andrey Andreev5232ba02012-10-27 15:25:05 +0300219 if (isset($assign_to_config) && is_array($assign_to_config))
Barry Mienydd671972010-10-04 16:33:58 +0200220 {
Andrey Andreev5232ba02012-10-27 15:25:05 +0300221 foreach ($assign_to_config as $key => $value)
222 {
223 $CFG->set_item($key, $value);
224 }
Derek Jones218876c2010-03-02 13:11:00 -0600225 }
226
227/*
228 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200229 * Important charset-related stuff
Derek Jones218876c2010-03-02 13:11:00 -0600230 * ------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200231 *
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200232 * Configure mbstring and/or iconv if they are enabled
233 * and set MB_ENABLED and ICONV_ENABLED constants, so
234 * that we don't repeatedly do extension_loaded() or
235 * function_exists() calls.
Barry Mienydd671972010-10-04 16:33:58 +0200236 *
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200237 * Note: UTF-8 class depends on this. It used to be done
238 * in it's constructor, but it's _not_ class-specific.
239 *
240 */
241 $charset = strtoupper(config_item('charset'));
Andrey Andreev51593f42014-05-07 00:06:31 +0300242 ini_set('default_charset', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200243
244 if (extension_loaded('mbstring'))
245 {
246 define('MB_ENABLED', TRUE);
Andrey Andreev1ffa2232014-05-09 12:30:59 +0300247 // mbstring.internal_encoding is deprecated starting with PHP 5.6
248 // and it's usage triggers E_DEPRECATED messages.
249 @ini_set('mbstring.internal_encoding', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200250 // This is required for mb_convert_encoding() to strip invalid characters.
251 // That's utilized by CI_Utf8, but it's also done for consistency with iconv.
252 mb_substitute_character('none');
253 }
254 else
255 {
256 define('MB_ENABLED', FALSE);
257 }
258
259 // There's an ICONV_IMPL constant, but the PHP manual says that using
260 // iconv's predefined constants is "strongly discouraged".
261 if (extension_loaded('iconv'))
262 {
263 define('ICONV_ENABLED', TRUE);
Andrey Andreev51593f42014-05-07 00:06:31 +0300264 // iconv.internal_encoding is deprecated starting with PHP 5.6
265 // and it's usage triggers E_DEPRECATED messages.
266 @ini_set('iconv.internal_encoding', $charset);
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200267 }
268 else
269 {
270 define('ICONV_ENABLED', FALSE);
271 }
272
Andrey Andreev51593f42014-05-07 00:06:31 +0300273 if (is_php('5.6'))
274 {
275 ini_set('php.internal_encoding', $charset);
276 }
277
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200278/*
279 * ------------------------------------------------------
Andrey Andreev3fd1b382014-02-13 03:01:31 +0200280 * Load compatibility features
281 * ------------------------------------------------------
282 */
283
Andrey Andreev376b2152014-02-13 12:35:52 +0200284 require_once(BASEPATH.'core/compat/mbstring.php');
Andrey Andreev9a152a92014-02-18 16:29:53 +0200285 require_once(BASEPATH.'core/compat/hash.php');
Andrey Andreev376b2152014-02-13 12:35:52 +0200286 require_once(BASEPATH.'core/compat/password.php');
Andrey Andreev5b3fe7c2014-07-07 10:55:53 +0300287 require_once(BASEPATH.'core/compat/standard.php');
Andrey Andreev3fd1b382014-02-13 03:01:31 +0200288
289/*
290 * ------------------------------------------------------
Andrey Andreeveb555ed2014-02-12 19:25:01 +0200291 * Instantiate the UTF-8 class
292 * ------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000293 */
Pascal Krieteaaec1e42011-01-20 00:01:21 -0500294 $UNI =& load_class('Utf8', 'core');
Barry Mienydd671972010-10-04 16:33:58 +0200295
Derek Jones218876c2010-03-02 13:11:00 -0600296/*
297 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500298 * Instantiate the URI class
Derek Jones218876c2010-03-02 13:11:00 -0600299 * ------------------------------------------------------
300 */
301 $URI =& load_class('URI', 'core');
302
303/*
304 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500305 * Instantiate the routing class and set the routing
Derek Jones218876c2010-03-02 13:11:00 -0600306 * ------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200307 */
Andrey Andreevc26b9eb2014-02-24 11:31:36 +0200308 $RTR =& load_class('Router', 'core', isset($routing) ? $routing : NULL);
Barry Mienydd671972010-10-04 16:33:58 +0200309
Derek Jones218876c2010-03-02 13:11:00 -0600310/*
311 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500312 * Instantiate the output class
Derek Jones218876c2010-03-02 13:11:00 -0600313 * ------------------------------------------------------
314 */
315 $OUT =& load_class('Output', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000316
317/*
318 * ------------------------------------------------------
Andrey Andreev9c5c24a2012-01-07 18:51:21 +0200319 * Is there a valid cache file? If so, we're done...
Derek Allard2067d1a2008-11-13 22:59:24 +0000320 * ------------------------------------------------------
321 */
Andrey Andreevc26b9eb2014-02-24 11:31:36 +0200322 if ($EXT->call_hook('cache_override') === FALSE && $OUT->_display_cache($CFG, $URI) === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000323 {
Andrey Andreev9c5c24a2012-01-07 18:51:21 +0200324 exit;
Derek Allard2067d1a2008-11-13 22:59:24 +0000325 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000326
327/*
Pascal Kriete14a0ac62011-04-05 14:55:56 -0400328 * -----------------------------------------------------
329 * Load the security class for xss and csrf support
330 * -----------------------------------------------------
331 */
332 $SEC =& load_class('Security', 'core');
333
334/*
Derek Allard2067d1a2008-11-13 22:59:24 +0000335 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500336 * Load the Input class and sanitize globals
Derek Allard2067d1a2008-11-13 22:59:24 +0000337 * ------------------------------------------------------
338 */
Barry Mienydd671972010-10-04 16:33:58 +0200339 $IN =& load_class('Input', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000340
Derek Jones218876c2010-03-02 13:11:00 -0600341/*
342 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500343 * Load the Language class
Derek Jones218876c2010-03-02 13:11:00 -0600344 * ------------------------------------------------------
345 */
346 $LANG =& load_class('Lang', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +0000347
348/*
349 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500350 * Load the app controller and local controller
Derek Allard2067d1a2008-11-13 22:59:24 +0000351 * ------------------------------------------------------
352 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000353 */
Derek Jones218876c2010-03-02 13:11:00 -0600354 // Load the base controller class
Andrey Andreev30d53242014-01-16 14:41:46 +0200355 require_once BASEPATH.'core/Controller.php';
Barry Mienydd671972010-10-04 16:33:58 +0200356
Timothy Warrenad475052012-04-19 13:21:06 -0400357 /**
358 * Reference to the CI_Controller method.
359 *
360 * Returns current CI instance object
361 *
Andrey Andreev7e0bde22016-03-07 17:52:26 +0200362 * @return CI_Controller
Timothy Warrenad475052012-04-19 13:21:06 -0400363 */
Greg Aker4abfa682010-11-10 14:44:26 -0600364 function &get_instance()
365 {
366 return CI_Controller::get_instance();
367 }
368
Greg Aker3a746652011-04-19 10:59:47 -0500369 if (file_exists(APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php'))
Greg Akerfa281352010-03-22 14:41:27 -0500370 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200371 require_once APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php';
Greg Akerfa281352010-03-22 14:41:27 -0500372 }
Barry Mienydd671972010-10-04 16:33:58 +0200373
Derek Jones218876c2010-03-02 13:11:00 -0600374 // Set a mark point for benchmarking
375 $BM->mark('loading_time:_base_classes_end');
Derek Allard2067d1a2008-11-13 22:59:24 +0000376
377/*
378 * ------------------------------------------------------
Andrey Andreev30d53242014-01-16 14:41:46 +0200379 * Sanity checks
Derek Allard2067d1a2008-11-13 22:59:24 +0000380 * ------------------------------------------------------
381 *
Andrey Andreev30d53242014-01-16 14:41:46 +0200382 * The Router class has already validated the request,
383 * leaving us with 3 options here:
384 *
385 * 1) an empty class name, if we reached the default
386 * controller, but it didn't exist;
387 * 2) a query string which doesn't go through a
388 * file_exists() check
389 * 3) a regular request for a non-existing page
390 *
391 * We handle all of these as a 404 error.
392 *
393 * Furthermore, none of the methods in the app controller
394 * or the loader class can be called via the URI, nor can
Andrey Andreev20292312013-07-22 14:29:10 +0300395 * controller methods that begin with an underscore.
Derek Allard2067d1a2008-11-13 22:59:24 +0000396 */
Barry Mienydd671972010-10-04 16:33:58 +0200397
Andrey Andreev30d53242014-01-16 14:41:46 +0200398 $e404 = FALSE;
399 $class = ucfirst($RTR->class);
400 $method = $RTR->method;
401
402 if (empty($class) OR ! file_exists(APPPATH.'controllers/'.$RTR->directory.$class.'.php'))
Derek Jones218876c2010-03-02 13:11:00 -0600403 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200404 $e404 = TRUE;
Andrey Andreev38e32f62012-11-03 00:16:47 +0200405 }
406 else
407 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200408 require_once(APPPATH.'controllers/'.$RTR->directory.$class.'.php');
409
410 if ( ! class_exists($class, FALSE) OR $method[0] === '_' OR method_exists('CI_Controller', $method))
411 {
412 $e404 = TRUE;
413 }
414 elseif (method_exists($class, '_remap'))
415 {
416 $params = array($method, array_slice($URI->rsegments, 2));
417 $method = '_remap';
418 }
Andrey Andreev522c7362012-11-05 16:40:32 +0200419 // WARNING: It appears that there are issues with is_callable() even in PHP 5.2!
420 // Furthermore, there are bug reports and feature/change requests related to it
421 // that make it unreliable to use in this context. Please, DO NOT change this
422 // work-around until a better alternative is available.
Andrey Andreev30d53242014-01-16 14:41:46 +0200423 elseif ( ! in_array(strtolower($method), array_map('strtolower', get_class_methods($class)), TRUE))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200424 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200425 $e404 = TRUE;
426 }
427 }
428
429 if ($e404)
430 {
431 if ( ! empty($RTR->routes['404_override']))
432 {
433 if (sscanf($RTR->routes['404_override'], '%[^/]/%s', $error_class, $error_method) !== 2)
Andrey Andreev38e32f62012-11-03 00:16:47 +0200434 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200435 $error_method = 'index';
Andrey Andreev38e32f62012-11-03 00:16:47 +0200436 }
437
Andrey Andreev30d53242014-01-16 14:41:46 +0200438 $error_class = ucfirst($error_class);
Andrey Andreev20292312013-07-22 14:29:10 +0300439
Andrey Andreev30d53242014-01-16 14:41:46 +0200440 if ( ! class_exists($error_class, FALSE))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200441 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200442 if (file_exists(APPPATH.'controllers/'.$RTR->directory.$error_class.'.php'))
Andrey Andreev38e32f62012-11-03 00:16:47 +0200443 {
Andrey Andreev30d53242014-01-16 14:41:46 +0200444 require_once(APPPATH.'controllers/'.$RTR->directory.$error_class.'.php');
445 $e404 = ! class_exists($error_class, FALSE);
Andrey Andreev38e32f62012-11-03 00:16:47 +0200446 }
Andrey Andreev30d53242014-01-16 14:41:46 +0200447 // Were we in a directory? If so, check for a global override
448 elseif ( ! empty($RTR->directory) && file_exists(APPPATH.'controllers/'.$error_class.'.php'))
449 {
450 require_once(APPPATH.'controllers/'.$error_class.'.php');
451 if (($e404 = ! class_exists($error_class, FALSE)) === FALSE)
452 {
453 $RTR->directory = '';
454 }
455 }
456 }
457 else
458 {
459 $e404 = FALSE;
Andrey Andreev38e32f62012-11-03 00:16:47 +0200460 }
461 }
462
Andrey Andreev30d53242014-01-16 14:41:46 +0200463 // Did we reset the $e404 flag? If so, set the rsegments, starting from index 1
464 if ( ! $e404)
465 {
466 $class = $error_class;
467 $method = $error_method;
468
469 $URI->rsegments = array(
470 1 => $class,
471 2 => $method
472 );
473 }
474 else
475 {
476 show_404($RTR->directory.$class.'/'.$method);
477 }
478 }
479
480 if ($method !== '_remap')
481 {
Andrey Andreev38e32f62012-11-03 00:16:47 +0200482 $params = array_slice($URI->rsegments, 2);
483 }
484
Derek Allard2067d1a2008-11-13 22:59:24 +0000485/*
486 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500487 * Is there a "pre_controller" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000488 * ------------------------------------------------------
489 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300490 $EXT->call_hook('pre_controller');
Derek Allard2067d1a2008-11-13 22:59:24 +0000491
492/*
493 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500494 * Instantiate the requested controller
Derek Allard2067d1a2008-11-13 22:59:24 +0000495 * ------------------------------------------------------
496 */
Derek Jones218876c2010-03-02 13:11:00 -0600497 // Mark a start point so we can benchmark the controller
498 $BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_start');
Barry Mienydd671972010-10-04 16:33:58 +0200499
Derek Jones218876c2010-03-02 13:11:00 -0600500 $CI = new $class();
501
502/*
503 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500504 * Is there a "post_controller_constructor" hook?
Derek Jones218876c2010-03-02 13:11:00 -0600505 * ------------------------------------------------------
506 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300507 $EXT->call_hook('post_controller_constructor');
Derek Jones218876c2010-03-02 13:11:00 -0600508
509/*
510 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500511 * Call the requested method
Derek Jones218876c2010-03-02 13:11:00 -0600512 * ------------------------------------------------------
513 */
Andrey Andreev38e32f62012-11-03 00:16:47 +0200514 call_user_func_array(array(&$CI, $method), $params);
Derek Allard2067d1a2008-11-13 22:59:24 +0000515
Derek Jones218876c2010-03-02 13:11:00 -0600516 // Mark a benchmark end point
517 $BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end');
Derek Allard2067d1a2008-11-13 22:59:24 +0000518
519/*
520 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500521 * Is there a "post_controller" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 * ------------------------------------------------------
523 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300524 $EXT->call_hook('post_controller');
Derek Allard2067d1a2008-11-13 22:59:24 +0000525
526/*
527 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500528 * Send the final rendered output to the browser
Derek Allard2067d1a2008-11-13 22:59:24 +0000529 * ------------------------------------------------------
530 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300531 if ($EXT->call_hook('display_override') === FALSE)
Derek Jones218876c2010-03-02 13:11:00 -0600532 {
533 $OUT->_display();
534 }
Barry Mienydd671972010-10-04 16:33:58 +0200535
Derek Allard2067d1a2008-11-13 22:59:24 +0000536/*
537 * ------------------------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500538 * Is there a "post_system" hook?
Derek Allard2067d1a2008-11-13 22:59:24 +0000539 * ------------------------------------------------------
540 */
Andrey Andreeva5dd2972012-03-26 14:43:01 +0300541 $EXT->call_hook('post_system');