-
{PHP internal code} — CodeIgniter\Debug\Exceptions->errorHandler ()
-
SYSTEMPATH/Session/Handlers/FileHandler.php : 72 — ini_set()
-
SYSTEMPATH/Config/Services.php : 667 — CodeIgniter\Session\Handlers\FileHandler->__construct ()
660 if ($driver === 'MySQLi') { 661 $driverName = MySQLiHandler::class; 662 } elseif ($driver === 'Postgre') { 663 $driverName = PostgreHandler::class; 664 } 665 } 666 667 $driver = new $driverName($config, AppServices::request()->getIPAddress()); 668 $driver->setLogger($logger); 669 670 $session = new Session($driver, $config); 671 $session->setLogger($logger); 672 673 if (session_status() === PHP_SESSION_NONE) { 674 $session->start();
-
SYSTEMPATH/Config/BaseService.php : 252 — CodeIgniter\Config\Services::session ()
245 { 246 $service = static::serviceExists($name); 247 248 if ($service === null) { 249 return null; 250 } 251 252 return $service::$name(...$arguments); 253 } 254 255 /** 256 * Check if the requested service is defined and return the declaring 257 * class. Return null if not found. 258 */ 259 public static function serviceExists(string $name): ?string
-
SYSTEMPATH/Config/BaseService.php : 193 — CodeIgniter\Config\BaseService::__callStatic ()
186 return static::$mocks[$key]; 187 } 188 189 if (! isset(static::$instances[$key])) { 190 // Make sure $getShared is false 191 $params[] = false; 192 193 static::$instances[$key] = AppServices::$key(...$params); 194 } 195 196 return static::$instances[$key]; 197 } 198 199 /** 200 * The Autoloader class is the central class that handles our
-
SYSTEMPATH/Config/Services.php : 641 — CodeIgniter\Config\BaseService::getSharedInstance ()
634 * Return the session manager. 635 * 636 * @return Session 637 */ 638 public static function session(?App $config = null, bool $getShared = true) 639 { 640 if ($getShared) { 641 return static::getSharedInstance('session', $config); 642 } 643 644 $config ??= config('App'); 645 assert($config instanceof App); 646 647 $logger = AppServices::logger(); 648
-
SYSTEMPATH/Config/BaseService.php : 252 — CodeIgniter\Config\Services::session ()
245 { 246 $service = static::serviceExists($name); 247 248 if ($service === null) { 249 return null; 250 } 251 252 return $service::$name(...$arguments); 253 } 254 255 /** 256 * Check if the requested service is defined and return the declaring 257 * class. Return null if not found. 258 */ 259 public static function serviceExists(string $name): ?string
-
APPPATH/Controllers/BaseController.php : 55 — CodeIgniter\Config\BaseService::__callStatic ()
48 // Do Not Edit This Line 49 parent::initController($request, $response, $logger); 50 51 //-------------------------------------------------------------------- 52 // Preload any models, libraries, etc, here. 53 //-------------------------------------------------------------------- 54 // E.g.: 55 $this->session = \Config\Services::session(); 56 } 57 58 public function change_status($type, $value) 59 { 60 switch ($type) { 61 case "school": 62 $schoolMdl = new SchoolModel();
-
SYSTEMPATH/CodeIgniter.php : 907 — App\Controllers\BaseController->initController ()
900 * @return Controller 901 */ 902 protected function createController() 903 { 904 assert(is_string($this->controller)); 905 906 $class = new $this->controller(); 907 $class->initController($this->request, $this->response, Services::logger()); 908 909 $this->benchmark->stop('controller_constructor'); 910 911 return $class; 912 } 913 914 /**
-
SYSTEMPATH/CodeIgniter.php : 490 — CodeIgniter\CodeIgniter->createController ()
483 } 484 } 485 486 $returned = $this->startController(); 487 488 // Closure controller has run in startController(). 489 if (! is_callable($this->controller)) { 490 $controller = $this->createController(); 491 492 if (! method_exists($controller, '_remap') && ! is_callable([$controller, $this->method], false)) { 493 throw PageNotFoundException::forMethodNotFound($this->method); 494 } 495 496 // Is there a "post_controller_constructor" event? 497 Events::trigger('post_controller_constructor');
-
SYSTEMPATH/CodeIgniter.php : 368 — CodeIgniter\CodeIgniter->handleRequest ()
361 $this->response->send(); 362 $this->callExit(EXIT_SUCCESS); 363 364 return; 365 } 366 367 try { 368 return $this->handleRequest($routes, $cacheConfig, $returnResponse); 369 } catch (RedirectException $e) { 370 $logger = Services::logger(); 371 $logger->info('REDIRECTED ROUTE at ' . $e->getMessage()); 372 373 // If the route is a 'redirect' route, it throws 374 // the exception with the $to as the message 375 $this->response->redirect(base_url($e->getMessage()), 'auto', $e->getCode());
-
FCPATH/index.php : 67 — CodeIgniter\CodeIgniter->run ()
60 *--------------------------------------------------------------- 61 * LAUNCH THE APPLICATION 62 *--------------------------------------------------------------- 63 * Now that everything is setup, it's time to actually fire 64 * up the engines and make this app do its thang. 65 */ 66 67 $app->run(); 68