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 Akadgrad_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_akadgrad';
$this->pk = 'akadgrad_id';
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Archiv_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_archiv';
$this->pk = 'archiv_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Aufmerksamdurch_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_aufmerksamdurch';
$this->pk = 'aufmerksamdurch_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Ausbildung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_ausbildung';
$this->pk = 'ausbildungcode';
}
}
@@ -0,0 +1,14 @@
<?php
class Berufstaetigkeit_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_berufstaetigkeit';
$this->pk = 'berufstaetigkeit_code';
}
}
@@ -0,0 +1,14 @@
<?php
class Beschaeftigungsausmass_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_beschaeftigungsausmass';
$this->pk = 'beschausmasscode';
}
}
@@ -0,0 +1,14 @@
<?php
class Besqual_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_besqual';
$this->pk = 'besqualcode';
}
}
@@ -0,0 +1,14 @@
<?php
class Bisfunktion_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_bisfunktion';
$this->pk = array('studiengang_kz', 'bisverwendung_id');
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Bisio_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_bisio';
$this->pk = 'bisio_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Bisorgform_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_bisorgform';
$this->pk = 'bisorgform_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Bisverwendung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_bisverwendung';
$this->pk = 'bisverwendung_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Bundesland_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_bundesland';
$this->pk = 'bundesland_code';
}
}
@@ -0,0 +1,14 @@
<?php
class Entwicklungsteam_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_entwicklungsteam';
$this->pk = array('studiengang_kz', 'mitarbeiter_uid');
}
}
@@ -0,0 +1,14 @@
<?php
class Gemeinde_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_gemeinde';
$this->pk = 'gemeinde_id';
}
}
@@ -0,0 +1,14 @@
<?php
class Hauptberuf_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_hauptberuf';
$this->pk = 'hauptberufcode';
}
}
@@ -0,0 +1,14 @@
<?php
class Lehrform_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_lehrform';
$this->pk = 'lehrform_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Lgartcode_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_lgartcode';
$this->pk = 'lgartcode';
}
}
@@ -0,0 +1,14 @@
<?php
class Mobilitaetsprogramm_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_mobilitaetsprogramm';
$this->pk = 'mobilitaetsprogramm_code';
}
}
+73
View File
@@ -0,0 +1,73 @@
<?php
class Nation_model extends DB_Model
{
protected $_bundeslandQuery = "SELECT * FROM bis.tbl_bundesland";
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_nation';
$this->pk = 'nation_code';
}
/**
*
*/
public function getAll($notLocked = FALSE, $orderEnglish = FALSE)
{
$result = NULL;
// Checks if the operation is permitted by the API caller
// All the code should be put inside this if statement
if(isAllowed($this->getAddonID(), 'nation'))
{
$result = $this->db->query($this->_getNationQuery($notLocked, $orderEnglish));
}
return $result;
}
/**
*
*/
protected function _getNationQuery($notLocked = FALSE, $orderEnglish = FALSE)
{
$qry = "SELECT * FROM bis.tbl_nation";
if($notLocked)
{
$qry .= " WHERE sperre IS NULL";
}
if(!$orderEnglish)
{
$qry .= " ORDER BY kurztext";
}
else
{
$qry .= " ORDER BY engltext";
}
return $qry;
}
/**
*
*/
public function getBundesland()
{
$result = NULL;
// Checks if the operation is permitted by the API caller
// All the code should be put inside this if statement
if(isAllowed($this->getAddonID(), 'nation'))
{
$result = $this->db->query($this->_bundeslandQuery);
}
return $result;
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Note_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_note';
$this->pk = 'note';
}
}
@@ -0,0 +1,14 @@
<?php
class Orgform_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_orgform';
$this->pk = 'orgform_kurzbz';
}
}
@@ -0,0 +1,14 @@
<?php
class Verwendung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_verwendung';
$this->pk = 'verwendung_code';
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Zgv_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_zgv';
$this->pk = 'zgv_code';
}
}
@@ -0,0 +1,14 @@
<?php
class Zgvdoktor_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_zgvdoktor';
$this->pk = 'zgvdoktor_code';
}
}
@@ -0,0 +1,14 @@
<?php
class Zgvgruppe_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_zgvgruppe';
$this->pk = ;
}
}
@@ -0,0 +1,14 @@
<?php
class Zgvmaster_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_zgvmaster';
$this->pk = 'zgvmas_code';
}
}
+14
View File
@@ -0,0 +1,14 @@
<?php
class Zweck_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_zweck';
$this->pk = 'zweck_code';
}
}