FCPATH/application/third_party/MX/Lang.php [ 0 ]
1 <?php (defined('BASEPATH')) OR exit('No direct script access allowed');
2
3 /**
4 * Modular Extensions - HMVC
5 *
-
FCPATH/application/third_party/MX/Base.php [ 4 ] » MY_Exceptions::error_handler(arguments)
code
2048
error
Declaration of MX_Lang::load() should be compatible with CI_Lang::load($langfile = '', $idiom = '', $return = false, $add_suffix = true, $alt_path = '')
file
/home/ipmgsaco/public_html/application/third_party/MX/Lang.php
line
0
4
Array ( [class] => MX_Controller [location] => /home/ipmgsaco/public_html/application/third_party/MX/Controller.php )
1 <?php (defined('BASEPATH')) OR exit('No direct script access allowed'); 2 3 /* load MX core classes */ 4 require_once dirname(__FILE__).'/Lang.php'; 5 require_once dirname(__FILE__).'/Config.php'; 6 7 /** 8 * Modular Extensions - HMVC 9 *
-
FCPATH/application/third_party/MX/Base.php [ 4 ] » require_once()
1 <?php (defined('BASEPATH')) OR exit('No direct script access allowed'); 2 3 /* load MX core classes */ 4 require_once dirname(__FILE__).'/Lang.php'; 5 require_once dirname(__FILE__).'/Config.php'; 6 7 /** 8 * Modular Extensions - HMVC 9 *
-
FCPATH/application/third_party/MX/Controller.php [ 4 ] » require(arguments)
0
/home/ipmgsaco/public_html/application/third_party/MX/Base.php
1 <?php (defined('BASEPATH')) OR exit('No direct script access allowed'); 2 3 /** load the CI class for Modular Extensions **/ 4 require dirname(__FILE__).'/Base.php'; 5 6 /** 7 * Modular Extensions - HMVC 8 * 9 * Adapted from the CodeIgniter Core Classes
-
FCPATH/application/third_party/MX/Modules.php [ 119 ] » include_once(arguments)
0
/home/ipmgsaco/public_html/application/third_party/MX/Controller.php
114 /* don't autoload CI_ prefixed classes or those using the config subclass_prefix */ 115 if (strstr($class, 'CI_') OR strstr($class, config_item('subclass_prefix'))) return; 116 117 /* autoload Modular Extensions MX core classes */ 118 if (strstr($class, 'MX_') AND is_file($location = dirname(__FILE__).'/'.substr($class, 3).EXT)) { 119 include_once $location; 120 return; 121 } 122 123 /* autoload core classes */ 124 if(is_file($location = APPPATH.'core/'.$class.EXT)) {
-
{PHP internal call} » Modules::autoload(arguments)
class
MX_Controller
-
FCPATH/application/controllers/page.php [ 3 ] » spl_autoload_call(arguments)
class_name
MX_Controller
1 <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 2 3 class Page extends MX_Controller { 4 5 public function __construct() 6 { 7 parent::__construct(); 8 $this->load->model('photos_model');
-
FCPATH/system/core/CodeIgniter.php [ 250 ] » include(arguments)
0
/home/ipmgsaco/public_html/application/controllers/page.php
245 if ( ! file_exists(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().'.php')) 246 { 247 show_error('Unable to load your default controller. Please make sure the controller specified in your Routes.php file is valid.'); 248 } 249 250 include(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().'.php'); 251 252 // Set a mark point for benchmarking 253 $BM->mark('loading_time:_base_classes_end'); 254 255 /*
-
FCPATH/index.php [ 202 ] » require_once(arguments)
0
/home/ipmgsaco/public_html/system/core/CodeIgniter.php
197 * -------------------------------------------------------------------- 198 * 199 * And away we go... 200 * 201 */ 202 require_once BASEPATH.'core/CodeIgniter.php'; 203 204 /* End of file index.php */ 205 /* Location: ./index.php */