-
ROOTPATH/writable/cache/FactoriesCache_config : 610 — CodeIgniter\Config\BaseConfig::__set_state ()
603 'default_head' => 'CodeIgniter\\Pager\\Views\\default_head', 604 'default_forum' => 'App\\Modules\\Forum\\Views\\global\\paginate_forum', 605 'pager_classic' => 'App\\Views\\Paginates\\paginate_classic', 606 ), 607 'perPage' => 20, 608 )), 609 'Config\\View' => 610 \Config\View::__set_state(array( 611 'saveData' => true, 612 'filters' => 613 array ( 614 'abs' => '\\abs', 615 'capitalize' => '\\CodeIgniter\\View\\Filters::capitalize', 616 'date' => '\\CodeIgniter\\View\\Filters::date', 617 'date_modify' => '\\CodeIgniter\\View\\Filters::date_modify', -
include VENDORPATH/codeigniter4/framework/system/Cache/FactoriesCache/FileVarExportHandler.php — include()
-
VENDORPATH/codeigniter4/framework/system/Cache/FactoriesCache.php : 48 — CodeIgniter\Cache\FactoriesCache\FileVarExportHandler->get ()
41 return 'FactoriesCache_' . $component; 42 } 43 44 public function load(string $component): bool 45 { 46 $key = $this->getCacheKey($component); 47 48 $data = $this->cache->get($key); 49 50 if (! is_array($data) || $data === []) { 51 return false; 52 } 53 54 Factories::setComponentInstances($component, $data); 55 -
SYSTEMPATH/Boot.php : 391 — CodeIgniter\Cache\FactoriesCache->load ()
384 { 385 service('autoloader')->initializeKint(CI_DEBUG); 386 } 387 388 protected static function loadConfigCache(): FactoriesCache 389 { 390 $factoriesCache = new FactoriesCache(); 391 $factoriesCache->load('config'); 392 393 return $factoriesCache; 394 } 395 396 /** 397 * The CodeIgniter class contains the core functionality to make 398 * the application run, and does all the dirty work to get -
SYSTEMPATH/Boot.php : 62 — CodeIgniter\Boot::loadConfigCache ()
55 static::loadAutoloader(); 56 static::setExceptionHandler(); 57 static::initializeKint(); 58 59 $configCacheEnabled = class_exists(Optimize::class) 60 && (new Optimize())->configCacheEnabled; 61 if ($configCacheEnabled) { 62 $factoriesCache = static::loadConfigCache(); 63 } 64 65 static::autoloadHelpers(); 66 67 $app = static::initializeCodeIgniter(); 68 static::runCodeIgniter($app); 69 -
FCPATH/index.php : 59 — CodeIgniter\Boot::bootWeb ()
52 // ^^^ Change this line if you move your application folder 53 54 $paths = new Config\Paths(); 55 56 // LOAD THE FRAMEWORK BOOTSTRAP FILE 57 require $paths->systemDirectory . '/Boot.php'; 58 59 exit(CodeIgniter\Boot::bootWeb($paths));