This commit is contained in:
Paminger
2016-05-04 07:05:23 +02:00
parent a932cfd0ad
commit 6836c3608d
216 changed files with 2934 additions and 147 deletions
@@ -0,0 +1,14 @@
<?php
class Abgabe_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_abgabe';
$this->pk = 'abgabe_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Abschlussbeurteilung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_abschlussbeurteilung';
$this->pk = 'abschlussbeurteilung_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Abschlusspruefung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_abschlusspruefung';
$this->pk = 'abschlusspruefung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Anrechnung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_anrechnung';
$this->pk = 'anrechnung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Anwesenheit_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_anwesenheit';
$this->pk = 'anwesenheit_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Beispiel_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_beispiel';
$this->pk = 'beispiel_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Betreuerart_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_betreuerart';
$this->pk = 'betreuerart_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Feedback_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_feedback';
$this->pk = 'feedback_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Legesamtnote_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_legesamtnote';
$this->pk = array('lehreinheit_id', 'student_uid');
}
}
@@ -0,0 +1,14 @@
<?php
class Lehreinheit_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lehreinheit';
$this->pk = 'lehreinheit_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Lehreinheitgruppe_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lehreinheitgruppe';
$this->pk = 'lehreinheitgruppe_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Lehreinheitmitarbeiter_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lehreinheitmitarbeiter';
$this->pk = array('mitarbeiter_uid', 'lehreinheit_id');
}
}
@@ -0,0 +1,14 @@
<?php
class Lehrfach_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lehrfach';
$this->pk = 'lehrfach_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Lehrfunktion_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lehrfunktion';
$this->pk = 'lehrfunktion_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Lehrtyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lehrtyp';
$this->pk = 'lehrtyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Lehrveranstaltung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lehrveranstaltung';
$this->pk = 'lehrveranstaltung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Lvangebot_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lvangebot';
$this->pk = 'lvangebot_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Lvgesamtnote_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_lvgesamtnote';
$this->pk = array('student_uid', 'studiensemester_kurzbz', 'lehrveranstaltung_id');
}
}
@@ -0,0 +1,14 @@
<?php
class Lvinfo_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_lvinfo';
$this->pk = array('sprache', 'lehrveranstaltung_id');
}
}
@@ -0,0 +1,14 @@
<?php
class Lvregel_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lvregel';
$this->pk = 'lvregel_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Lvregeltyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lvregeltyp';
$this->pk = 'lvregeltyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Moodle_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_moodle';
$this->pk = 'moodle_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Notenschluessel_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_notenschluessel';
$this->pk = 'notenschluessel_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Notenschluesselaufteilung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_notenschluesselaufteilung';
$this->pk = 'notenschluesselaufteilung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Notenschluesseluebung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_notenschluesseluebung';
$this->pk = array('note', 'uebung_id');
}
}
@@ -0,0 +1,14 @@
<?php
class Notenschluesselzuordnung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_notenschluesselzuordnung';
$this->pk = 'notenschluesselzuordnung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Paabgabe_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_paabgabe';
$this->pk = 'paabgabe_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Paabgabetyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_paabgabetyp';
$this->pk = 'paabgabetyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Projektarbeit_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_projektarbeit';
$this->pk = 'projektarbeit_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Projektbetreuer_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_projektbetreuer';
$this->pk = array('betreuerart_kurzbz', 'projektarbeit_id', 'person_id');
}
}
@@ -0,0 +1,14 @@
<?php
class Projekttyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_projekttyp';
$this->pk = 'projekttyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Pruefung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_pruefung';
$this->pk = 'pruefung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Pruefungsanmeldung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_pruefungsanmeldung';
$this->pk = 'pruefungsanmeldung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Pruefungsfenster_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_pruefungsfenster';
$this->pk = 'pruefungsfenster_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Pruefungsstatus_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_pruefungsstatus';
$this->pk = 'status_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Pruefungstermin_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_pruefungstermin';
$this->pk = 'pruefungstermin_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Pruefungstyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_pruefungstyp';
$this->pk = 'pruefungstyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Studentbeispiel_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_studentbeispiel';
$this->pk = array('beispiel_id', 'student_uid');
}
}
@@ -0,0 +1,14 @@
<?php
class Studentlehrverband_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_studentlehrverband';
$this->pk = array('studiensemester_kurzbz', 'student_uid');
}
}
@@ -0,0 +1,14 @@
<?php
class Studentuebung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_studentuebung';
$this->pk = array('uebung_id', 'student_uid');
}
}
@@ -0,0 +1,14 @@
<?php
class Uebung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_uebung';
$this->pk = 'uebung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Zeugnis_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_zeugnis';
$this->pk = 'zeugnis_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Zeugnisnote_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_zeugnisnote';
$this->pk = array('studiensemester_kurzbz', 'student_uid', 'lehrveranstaltung_id');
}
}