- 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
16 lines
521 B
PHP
16 lines
521 B
PHP
<?php
|
|
|
|
/**
|
|
* The goal of this file is to allow developers a location
|
|
* where they can overwrite core procedural functions and
|
|
* replace them with their own. This file is loaded during
|
|
* the bootstrap process and is called during the framework's
|
|
* execution.
|
|
*
|
|
* This can be looked at as a `master helper` file that is
|
|
* loaded early on, and may also contain additional functions
|
|
* that you'd like to use throughout your entire application
|
|
*
|
|
* @see: https://codeigniter.com/user_guide/extending/common.html
|
|
*/
|