33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Progress Report Status Labels
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'status_options' => [
|
|
// Keep these aligned with your existing values in DB
|
|
'draft' => 'Draft',
|
|
'submitted' => 'Submitted',
|
|
'reviewed' => 'Reviewed',
|
|
'approved' => 'Approved',
|
|
'rejected' => 'Rejected',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Subject Sections Mapping
|
|
|--------------------------------------------------------------------------
|
|
| Replace with your exact CI ClassProgressController::SUBJECT_SECTIONS values
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'subject_sections' => [
|
|
// Example placeholders only:
|
|
// 'quran' => ['Memorization', 'Reading', 'Tajweed'],
|
|
// 'islamic_studies' => ['Aqeedah', 'Fiqh', 'Seerah'],
|
|
// 'arabic' => ['Reading', 'Writing', 'Vocabulary'],
|
|
],
|
|
|
|
]; |