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 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';
}
}