-
{PHP internal code} — CodeIgniter\Debug\Exceptions->errorHandler ()
-
SYSTEMPATH/HTTP/ResponseTrait.php : 714 — setcookie()
-
SYSTEMPATH/HTTP/ResponseTrait.php : 690 — CodeIgniter\HTTP\Response->doSetCookie ()
683 $name = $cookie->getPrefixedName(); 684 $value = $cookie->getValue(); 685 $options = $cookie->getOptions(); 686 687 if ($cookie->isRaw()) { 688 $this->doSetRawCookie($name, $value, $options); 689 } else { 690 $this->doSetCookie($name, $value, $options); 691 } 692 } 693 694 $this->cookieStore->clear(); 695 } 696 697 /** -
SYSTEMPATH/HTTP/ResponseTrait.php : 670 — CodeIgniter\HTTP\Response->dispatchCookies ()
663 */ 664 protected function sendCookies() 665 { 666 if ($this->pretend) { 667 return; 668 } 669 670 $this->dispatchCookies(); 671 } 672 673 private function dispatchCookies(): void 674 { 675 /** @var IncomingRequest $request */ 676 $request = service('request'); 677 -
SYSTEMPATH/HTTP/ResponseTrait.php : 373 — CodeIgniter\HTTP\Response->sendCookies ()
366 public function send() 367 { 368 // If we're enforcing a Content Security Policy, 369 // we need to give it a chance to build out it's headers. 370 $this->CSP->finalize($this); 371 372 $this->sendHeaders(); 373 $this->sendCookies(); 374 $this->sendBody(); 375 376 return $this; 377 } 378 379 /** 380 * Sends the headers of this HTTP response to the browser. -
SYSTEMPATH/CodeIgniter.php : 1148 — CodeIgniter\HTTP\Response->send ()
1141 * Sends the output of this request back to the client. 1142 * This is what they've been waiting for! 1143 * 1144 * @return void 1145 */ 1146 protected function sendResponse() 1147 { 1148 $this->response->send(); 1149 } 1150 1151 /** 1152 * Exits the application, setting the exit code for CLI-based applications 1153 * that might be watching. 1154 * 1155 * Made into a separate method so that it can be mocked during testing -
SYSTEMPATH/CodeIgniter.php : 386 — CodeIgniter\CodeIgniter->sendResponse ()
379 // Is there a post-system event? 380 Events::trigger('post_system'); 381 382 if ($returnResponse) { 383 return $this->response; 384 } 385 386 $this->sendResponse(); 387 388 return null; 389 } 390 391 /** 392 * Run required before filters. 393 */ -
SYSTEMPATH/Boot.php : 417 — CodeIgniter\CodeIgniter->run ()
410 411 /** 412 * Now that everything is set up, it's time to actually fire 413 * up the engines and make this app do its thang. 414 */ 415 protected static function runCodeIgniter(CodeIgniter $app): void 416 { 417 $app->run(); 418 } 419 420 protected static function saveConfigCache(FactoriesCache $factoriesCache): void 421 { 422 $factoriesCache->save('config'); 423 } 424 -
SYSTEMPATH/Boot.php : 68 — CodeIgniter\Boot::runCodeIgniter ()
61 if ($configCacheEnabled) { 62 $factoriesCache = static::loadConfigCache(); 63 } 64 65 static::autoloadHelpers(); 66 67 $app = static::initializeCodeIgniter(); 68 static::runCodeIgniter($app); 69 70 if ($configCacheEnabled) { 71 static::saveConfigCache($factoriesCache); 72 } 73 74 // Exits the application, setting the exit code for CLI-based 75 // applications that might be watching. -
FCPATH/wp-blog-header.php : 59 — CodeIgniter\Boot::bootWeb ()
52 // ^^^ Change this line if you move your application folder 53 54 $paths = new Paths(); 55 56 // LOAD THE FRAMEWORK BOOTSTRAP FILE 57 require $paths->systemDirectory . '/Boot.php'; 58 59 exit(Boot::bootWeb($paths)); 60 -
include FCPATH/index.php — include()