fix home page display snd styling
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 49s
Tests / PHPUnit (push) Successful in 1m26s

This commit is contained in:
root
2026-09-02 23:15:24 -04:00
parent dbfd72c2f9
commit e81a1832ad
30 changed files with 940 additions and 2181 deletions
+25
View File
@@ -0,0 +1,25 @@
class AdministratorController extends BaseController
{
protected $roleModel;
protected $userModel;
protected $userRoleModel;
protected $configModel;
protected $semester;
protected $schoolYear;
protected $staffAttendanceModel;
public function __construct()
{
helper('auth');
$this->roleModel = new RoleModel();
$this->userModel = new UserModel();
$this->configModel = new ConfigurationModel();
$this->userRoleModel = new UserRoleModel();
$this->semester = getSemester();
$this->schoolYear = $this->configModel->getConfig('school_year');
$this->staffAttendanceModel = new StaffAttendanceModel();
}
/**
* Compute all allowed absence dates (future Sundays within Sep..May for the configured school year)
*/