mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
d96a0e98d5
- Updated the api test suite - Added the script generate.php to automatically generate the test cases for the controllers
15 lines
217 B
PHP
15 lines
217 B
PHP
<?php
|
|
class Kriterien_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'testtool.tbl_kriterien';
|
|
$this->pk = 'kategorie_kurzbz';
|
|
}
|
|
}
|