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 Aktivitaet_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_aktivitaet';
$this->pk = 'aktivitaet_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Aufwandstyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_aufwandstyp';
$this->pk = 'aufwandstyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Projekt_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_projekt';
$this->pk = 'projekt_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Projekt_ressource_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_projekt_ressource';
$this->pk = 'projekt_ressource_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Projektphase_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_projektphase';
$this->pk = 'projektphase_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Projekttask_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_projekttask';
$this->pk = 'projekttask_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Ressource_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_ressource';
$this->pk = 'ressource_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Scrumsprint_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_scrumsprint';
$this->pk = 'scrumsprint_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Scrumteam_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'fue.tbl_scrumteam';
$this->pk = 'scrumteam_kurzbz';
}
}