recreate project
This commit is contained in:
@@ -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,
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user