24 lines
592 B
PHP
24 lines
592 B
PHP
<?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,
|
|
];
|
|
}
|