Erster Prototyp für Tempus Neu DB und GUI

This commit is contained in:
Andreas Österreicher
2025-10-20 11:01:50 +02:00
parent 9d306fcb7e
commit 352fc53e74
19 changed files with 1629 additions and 0 deletions
@@ -0,0 +1,14 @@
<?php
class Kalender_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_kalender';
$this->pk = 'kalender_id';
}
}