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
+14
View File
@@ -0,0 +1,14 @@
<?php
class Akte_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_akte';
$this->pk = 'akte_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Aufnahmeschluessel_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_aufnahmeschluessel';
$this->pk = 'aufnahmeschluessel';
}
}
@@ -0,0 +1,14 @@
<?php
class Aufnahmetermin_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_aufnahmetermin';
$this->pk = 'aufnahmetermin_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Aufnahmetermintyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_aufnahmetermintyp';
$this->pk = 'aufnahmetermintyp_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Bewerbungstermine_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_bewerbungstermine';
$this->pk = 'bewerbungstermin_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Buchungstyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_buchungstyp';
$this->pk = 'buchungstyp_kurzbz';
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Dokument_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_dokument';
$this->pk = 'dokument_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Dokumentprestudent_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_dokumentprestudent';
$this->pk = array('prestudent_id', 'dokument_kurzbz');
}
}
@@ -0,0 +1,14 @@
<?php
class Dokumentstudiengang_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_dokumentstudiengang';
$this->pk = array('studiengang_kz', 'dokument_kurzbz');
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Konto_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_konto';
$this->pk = 'buchungsnr';
}
}
@@ -0,0 +1,14 @@
<?php
class Preincoming_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_preincoming';
$this->pk = 'preincoming_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Preinteressent_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_preinteressent';
$this->pk = 'preinteressent_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Preinteressentstudiengang_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_preinteressentstudiengang';
$this->pk = array('preinteressent_id', 'studiengang_kz');
}
}
@@ -0,0 +1,14 @@
<?php
class Preoutgoing_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_preoutgoing';
$this->pk = 'preoutgoing_id';
}
}
@@ -0,0 +1,40 @@
<?php
class Prestudent_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_prestudent';
$this->pk = 'prestudent_id';
}
/**
*
*/
public function loadPrestudentPerson($prestudentID)
{
// Check the rights
if (! $this->fhc_db_acl->isBerechtigt('basis/person', 's'))
return $this->_error(lang('fhc_'.FHC_NORIGHT).' -> basis/person', FHC_MODEL_ERROR);
// Prepare SQL-Query
$this->db->select('*')
->from('public.tbl_prestudent')
->join('public.tbl_person', 'person_id')
->where('prestudent_id', $prestudentID);
// Do the query
$result = $this->db->get()->result_object();
// Return the result
if ($result)
return $this->_success($result);
else
return $this->_error($this->db->error(), FHC_DB_ERROR);
}
}
@@ -0,0 +1,14 @@
<?php
class Prestudentstatus_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_prestudentstatus';
$this->pk = array('ausbildungssemester', 'studiensemester_kurzbz', 'status_kurzbz', 'prestudent_id');
}
}
@@ -0,0 +1,14 @@
<?php
class Reihungstest_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_reihungstest';
$this->pk = 'reihungstest_id';
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Status_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_status';
$this->pk = 'status_kurzbz';
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Student_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_student';
$this->pk = 'student_uid';
}
}