The method loadWhole has been removed from model DB_Model.

The same functionality has given by calling the load method without parameters
This commit is contained in:
paolo
2016-06-24 10:39:52 +02:00
parent 3fdf54c1d1
commit 58a6da42ae
23 changed files with 28 additions and 58 deletions
@@ -30,7 +30,7 @@ class Bundesland extends APIv1_Controller
public function getAll()
{
$result = $this->BundeslandModel->loadWhole();
$result = $this->BundeslandModel->load();
$this->response($result, REST_Controller::HTTP_OK);
}
@@ -63,7 +63,7 @@ class Nation extends APIv1_Controller
}
else
{
$result = $this->NationModel->loadWhole();
$result = $this->NationModel->load();
}
}
@@ -52,7 +52,7 @@ class Orgform extends APIv1_Controller
*/
public function getAll()
{
$result = $this->OrgformModel->loadWhole();
$result = $this->OrgformModel->load();
$this->response($result, REST_Controller::HTTP_OK);
}
@@ -54,7 +54,7 @@ class Statistik extends APIv1_Controller
{
$this->StatistikModel->addOrder($this->get('order'));
$result = $this->StatistikModel->loadWhole();
$result = $this->StatistikModel->load();
$this->response($result, REST_Controller::HTTP_OK);
}
@@ -68,7 +68,7 @@ class Statistik extends APIv1_Controller
$this->StatistikModel->addOrder('bezeichnung');
$this->StatistikModel->addOrder('statistik_kurzbz');
$result = $this->StatistikModel->loadWhole();
$result = $this->StatistikModel->load();
$this->response($result, REST_Controller::HTTP_OK);
}
@@ -89,7 +89,7 @@ class Studiensemester extends APIv1_Controller
$this->StudiensemesterModel->addOrder('ende', 'ASC');
}
$result = $this->StudiensemesterModel->loadWhole();
$result = $this->StudiensemesterModel->load();
$this->response($result, REST_Controller::HTTP_OK);
}
@@ -66,7 +66,7 @@ class Ort extends APIv1_Controller
}
else
{
$result = $this->OrtModel->loadWhole();
$result = $this->OrtModel->load();
}
$this->response($result, REST_Controller::HTTP_OK);
-30
View File
@@ -186,36 +186,6 @@ class DB_Model extends FHC_Model
else
return $this->_error($this->db->error(), FHC_DB_ERROR);
}
/** ---------------------------------------------------------------
* Load single data from DB-Table
*
* @param string $id ID (Primary Key) for SELECT ... WHERE
* @return array
*/
public function loadWhole()
{
// Check Class-Attributes
if (is_null($this->dbTable))
return $this->_error(lang('fhc_'.FHC_NODBTABLE), FHC_MODEL_ERROR);
if (is_null($this->pk))
return $this->_error(lang('fhc_'.FHC_NOPK), FHC_MODEL_ERROR);
// Check rights
if (! $this->fhc_db_acl->isBerechtigt($this->acl[$this->dbTable], 's'))
return $this->_error(lang('fhc_'.FHC_NORIGHT).' -> '.$this->acl[$this->dbTable], FHC_MODEL_ERROR);
// DB-SELECT
$result = $this->db->get($this->dbTable);
if ($result)
return $this->_success($result->result());
else
return $this->_error($this->db->error(), FHC_DB_ERROR);
}
/** ---------------------------------------------------------------
* Add a table to join with
+1 -1
View File
@@ -8,7 +8,7 @@ class sprache_widget extends Widget
public function display($data)
{
$this->load->model('system/Sprache_model');
$res = $this->Sprache_model->loadWhole();
$res = $this->Sprache_model->load();
//var_dump($res);
foreach ($res->retval as $obj)
{
+1 -1
View File
@@ -49,7 +49,7 @@ class benutzer extends person
* Laedt Benutzer mit der uebergebenen ID
* @param $uid ID der Person die geladen werden soll
*/
public function load($uid)
public function load($uid = null)
{
$qry = "SELECT * FROM public.tbl_benutzer WHERE uid=".$this->db_add_param($uid);
+1 -1
View File
@@ -50,7 +50,7 @@ class berechtigung extends Berechtigung_model
* @param $berechtigung_kurzbz
* @return true wenn ok, false im Fehlerfall
*/
public function load($berechtigung_kurzbz)
public function load($berechtigung_kurzbz = null)
{
$result = parent::load($berechtigung_kurzbz);
+1 -1
View File
@@ -71,7 +71,7 @@ class dms extends Dms_model
* @param dms_id
* @param version optional
*/
public function load($dms_id, $version=null)
public function load($dms_id = null, $version=null)
{
$qry = "SELECT tbl_dms.dms_id, * FROM campus.tbl_dms JOIN campus.tbl_dms_version USING(dms_id) WHERE dms_id=".$this->db_add_param($dms_id, FHC_INTEGER);
+1 -1
View File
@@ -109,7 +109,7 @@ class funktion extends Funktion_model
* @param $funktion_kurzbz ID der zu ladenden Funktion
* @return true wenn ok, false im Fehlerfall
*/
public function load($funktion_kurzbz)
public function load($funktion_kurzbz = null)
{
if ($funktion_kurzbz == '')
{
+1 -1
View File
@@ -80,7 +80,7 @@ class kontakt extends Kontakt_model
* @param $kontakt_id ID des zu ladenden Kontaktes
* @return true wenn ok, false im Fehlerfall
*/
public function load($kontakt_id)
public function load($kontakt_id = null)
{
if(!is_numeric($kontakt_id))
{
+1 -1
View File
@@ -67,7 +67,7 @@ class mitarbeiter extends benutzer
* @param $uid
* @return true wenn ok, sonst false
*/
public function load($uid)
public function load($uid = null)
{
if(!benutzer::load($uid))
return false;
+2 -2
View File
@@ -67,7 +67,7 @@ class nation extends Nation_model
* @param $code code der zu ladenden Nation
* @return true wenn ok, false im Fehlerfall
*/
public function load($code)
public function load($code = null)
{
//Lesen der Daten aus der Datenbank
$result = parent::loadWhere(array('nation_code' => $code));
@@ -126,7 +126,7 @@ class nation extends Nation_model
}
else
{
$result = parent::loadWhole();
$result = parent::load();
}
}
+1 -1
View File
@@ -54,7 +54,7 @@ class organisationsform extends Orgform_model
* Laedt eine Organisationsform
* @param $orgform_kurzbz
*/
public function load($orgform_kurzbz)
public function load($orgform_kurzbz = null)
{
$qry = "SELECT * FROM bis.tbl_orgform WHERE orgform_kurzbz=".$this->db_add_param($orgform_kurzbz).';';
+2 -2
View File
@@ -93,7 +93,7 @@ class ort extends Ort_model
}
else
{
$result = parent::loadWhole();
$result = parent::load();
}
if (!is_object($result) || (is_object($result) && ($result->error != EXIT_SUCCESS || !is_array($result->retval))))
@@ -136,7 +136,7 @@ class ort extends Ort_model
* @param $fachb_id ID des zu ladenden Ortes
* @return true wenn ok, false im Fehlerfall
*/
public function load($ort_kurzbz)
public function load($ort_kurzbz = null)
{
if ($ort_kurzbz == '')
{
+1 -1
View File
@@ -87,7 +87,7 @@ class person extends Person_model
* @param int $personId ID der Person die geladen werden soll.
* @return bool
**/
public function load($personId)
public function load($personId = null)
{
//person_id auf gueltigkeit pruefen
if (is_numeric($personId) && $personId != '')
+1 -1
View File
@@ -72,7 +72,7 @@ class preinteressent extends Preinteressent_model
* Laedt einen Datensatz
* @param preinteressent_id ID des zu ladenden Datensatzes
*/
public function load($preinteressent_id)
public function load($preinteressent_id = null)
{
//id auf Gueltigkeit pruefen
if(!is_numeric($preinteressent_id) || $preinteressent_id == '')
+1 -1
View File
@@ -104,7 +104,7 @@ class prestudent extends Prestudent_model
* Laedt Prestudent mit der uebergebenen ID
* @param $prestudent_id ID des Prestudenten der geladen werden soll
*/
public function load($prestudent_id)
public function load($prestudent_id = null)
{
if (!is_numeric($prestudent_id))
{
+3 -3
View File
@@ -80,7 +80,7 @@ class statistik extends Statistik_model
* Laedt eine Statistik
* @param $statistik_kurzbz
*/
public function load($statistik_kurzbz)
public function load($statistik_kurzbz = null)
{
$result = parent::load($statistik_kurzbz);
@@ -133,7 +133,7 @@ class statistik extends Statistik_model
parent::addOrder($order);
}
$result = parent::loadWhole();
$result = parent::load();
if (is_object($result) && $result->error == EXIT_SUCCESS && is_array($result->retval))
{
@@ -339,7 +339,7 @@ class statistik extends Statistik_model
parent::addOrder('bezeichnung');
parent::addOrder('statistik_kurzbz');
$result = parent::loadWhole();
$result = parent::load();
if (is_object($result) && $result->error == EXIT_SUCCESS && is_array($result->retval))
{
+1 -1
View File
@@ -58,7 +58,7 @@ class student extends benutzer
* studiensemester_kurzbz
* @return true wenn ok, false im Fehlerfall
*/
public function load($uid, $studiensemester_kurzbz=null)
public function load($uid = null, $studiensemester_kurzbz=null)
{
if(!benutzer::load($uid))
return false;
+2 -2
View File
@@ -59,7 +59,7 @@ class studiensemester extends Studiensemester_model
*
* @param $studiensemester_kurzbz Stsem das geladen werden soll
*/
public function load($studiensemester_kurzbz)
public function load($studiensemester_kurzbz = null)
{
$result = parent::load($studiensemester_kurzbz);
@@ -318,7 +318,7 @@ class studiensemester extends Studiensemester_model
parent::addOrder('ende', 'ASC');
}
$result = parent::loadWhole();
$result = parent::load();
if (is_object($result) && $result->error == EXIT_SUCCESS && is_array($result->retval))
{