- CodeIgniter 4 framework setup with SQL Server database config - Models: Control, Test, Dept, Result, Daily/ Monthly entry models - Controllers: Dashboard, Control, Test, Dept, Entry, Report, API endpoints - Views: CRUD pages with modal dialogs, dashboard, reports - Database: Migrations for control test and daily/monthly result tables - Legacy v1 PHP application preserved in /v1 directory - Documentation: AGENTS.md, VIEWS_RULES.md for development guidelines
31 lines
927 B
PHP
31 lines
927 B
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
/**
|
|
* Optimization Configuration.
|
|
*
|
|
* NOTE: This class does not extend BaseConfig for performance reasons.
|
|
* So you cannot replace the property values with Environment Variables.
|
|
*/
|
|
class Optimize
|
|
{
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Config Caching
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching
|
|
*/
|
|
public bool $configCacheEnabled = false;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Config Caching
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching
|
|
*/
|
|
public bool $locatorCacheEnabled = false;
|
|
}
|