mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
c353e854e8
- 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
15 lines
252 B
PHP
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';
|
|
}
|
|
}
|