recreate project

This commit is contained in:
root
2026-02-10 22:11:06 -05:00
commit 663c0cdbda
10149 changed files with 1379710 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace Config;
use CodeIgniter\Config\BaseConfig;
class School extends BaseConfig
{
/**
* Attendance-related settings.
* Access via: config('School')->attendance['timezone']
*/
public array $attendance = [
// School-local timezone used for auto-publish calculations
'timezone' => 'America/New_York',
// Strategy label (for reference; your code uses the helper library)
'autopublish_strategy' => 'second_sunday_after',
// Optional toggles you might use later:
// 'require_reason_on_reopen' => true,
];
}