mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-06 06:39:27 +00:00
25 lines
370 B
PHP
25 lines
370 B
PHP
<?php
|
|
class Fehlerkonfiguration_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'system.tbl_fehler_konfiguration';
|
|
$this->pk = array('konfigurationstyp_kurzbz', 'fehlercode');
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param
|
|
* @return object success or error
|
|
*/
|
|
public function getKonfiguration()
|
|
{
|
|
|
|
}
|
|
}
|