init backend presensi

This commit is contained in:
mwpn
2026-03-05 14:37:36 +07:00
commit b4fda6b9c9
319 changed files with 27261 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
<?php
namespace App\Modules\Academic\Models;
use App\Modules\Academic\Entities\ClassEntity;
use CodeIgniter\Model;
/**
* Class Model
*
* Handles database operations for classes.
*/
class ClassModel extends Model
{
protected $table = 'classes';
protected $primaryKey = 'id';
protected $useAutoIncrement = true;
protected $returnType = ClassEntity::class;
protected $useSoftDeletes = false;
protected $protectFields = true;
protected $allowedFields = [
'name',
'grade',
'major',
'wali_user_id',
];
// Dates
protected $useTimestamps = true;
protected $dateFormat = 'datetime';
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
protected $deletedField = 'deleted_at';
// Validation
protected $validationRules = [
'name' => 'required|max_length[100]',
'grade' => 'required|max_length[50]',
'major' => 'required|max_length[50]',
'wali_user_id' => 'permit_empty|integer|is_not_unique[users.id]',
];
protected $validationMessages = [];
protected $skipValidation = false;
protected $cleanValidationRules = true;
// Callbacks
protected $allowCallbacks = true;
protected $beforeInsert = [];
protected $afterInsert = [];
protected $beforeUpdate = [];
protected $afterUpdate = [];
protected $beforeFind = [];
protected $afterFind = [];
protected $beforeDelete = [];
protected $afterDelete = [];
}