mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-06 14:49:27 +00:00
57597dac29
- added updatemails - added reservierungssync - updated status kurzbz - reservierung renderer for tempus
16 lines
256 B
PHP
16 lines
256 B
PHP
<?php
|
|
class Kalender_Event_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'lehre.tbl_kalender_event';
|
|
$this->pk = array('kalender_id');
|
|
$this->hasSequence = false;
|
|
}
|
|
}
|