Merge origin/ci into ci

Conflicts:
	application/core/FHC_Model.php
	application/models/Nation_model.php
	application/models/lehre/Studiengang_model.php
	application/models/lehre/Studienplan_model.php
This commit is contained in:
paolo
2016-05-04 15:34:00 +02:00
221 changed files with 3055 additions and 169 deletions
@@ -0,0 +1,14 @@
<?php
class Ablauf_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_ablauf';
$this->pk = 'ablauf_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Antwort_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_antwort';
$this->pk = 'antwort_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Frage_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_frage';
$this->pk = 'frage_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Gebiet_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_gebiet';
$this->pk = 'gebiet_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Kategorie_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_kategorie';
$this->pk = 'kategorie_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Kriterien_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_kriterien';
$this->pk = '';
}
}
@@ -0,0 +1,14 @@
<?php
class Pruefling_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_pruefling';
$this->pk = 'pruefling_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Vorschlag_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_vorschlag';
$this->pk = 'vorschlag_id';
}
}