- Tags testversion

- header tooltips
- lehre spalte markieren wenn altes semester
- legende-tab hinzugefuegt
This commit is contained in:
ma0048
2024-11-11 07:33:49 +01:00
parent 9c637b8575
commit 45bc65d32a
7 changed files with 495 additions and 0 deletions
@@ -0,0 +1,14 @@
<?php
class Notiztyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_notiz_typ';
$this->pk = 'typ_kurzbz';
}
}