This commit is contained in:
Paminger
2016-05-04 07:17:07 +02:00
parent 6836c3608d
commit 1a36ce3dff
4 changed files with 34 additions and 4 deletions
@@ -0,0 +1,14 @@
<?php
class LeNotenschluessel_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_notenschluessel';
$this->pk = array('note', 'lehreinheit_id');
}
}
@@ -0,0 +1,14 @@
<?php
class LePruefung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_pruefung';
$this->pk = 'pruefung_id';
}
}
@@ -8,7 +8,7 @@ class Pruefung_model extends DB_Model
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_pruefung';
$this->dbTable = 'campus.tbl_pruefung';
$this->pk = 'pruefung_id';
}
}
@@ -1,13 +1,15 @@
<?php
class Studienplan_model extends DB_Model
{
/**
*
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_studienplan';
$this->pk = 'studienplan_id';
}
/**
@@ -29,4 +31,4 @@ class Studienplan_model extends DB_Model
return $result;
}
}
}