Files
FHC-Core/application/models/education/Anrechnunganrechnungstatus_model.php
ma0068 c353e854e8 Tab Anrechnungen/Exemptions
- bugfix handle overflow in textfield of Notiz
- bugfix delete: remove anrechnung_id also from lehre.tbl_anrechnung_anrechnungstatus
- redesign Notizen of Anrechnungen: header with title Lehrveranstaltungen
- add reload functionality to update count of notizen in action buttons
2025-07-01 14:32:33 +02:00

15 lines
252 B
PHP

<?php
class Anrechnunganrechnungstatus_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_anrechnung_anrechnungstatus';
$this->pk = 'anrechnungstatus_id';
}
}