commit
a915732afd
@ -16,6 +16,7 @@ class BenutzerController{
|
|||||||
$this->db = new BenutzerModel();
|
$this->db = new BenutzerModel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Updated einen Benutzer
|
||||||
public function updateBenutzer($elternId, $data){
|
public function updateBenutzer($elternId, $data){
|
||||||
|
|
||||||
$result = $this->db->updateBenutzer($benutzerId, $data);
|
$result = $this->db->updateBenutzer($benutzerId, $data);
|
||||||
@ -24,6 +25,7 @@ class BenutzerController{
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fügt einen Benutzer in die Datenbank hinzu
|
||||||
public function insertBenutzer($data){
|
public function insertBenutzer($data){
|
||||||
$result = $this->db->insertBenutzer($data)
|
$result = $this->db->insertBenutzer($data)
|
||||||
|
|
||||||
|
@ -24,18 +24,21 @@ class KindController{
|
|||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Updated ein Kind
|
||||||
public function updateKind($kindId, $data){
|
public function updateKind($kindId, $data){
|
||||||
$result = $this->db->updateKind($kindId, $data);
|
$result = $this->db->updateKind($kindId, $data);
|
||||||
|
|
||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fügt ein Kind hinzu
|
||||||
public function addKind($data){
|
public function addKind($data){
|
||||||
$result = $this->db->addKind($data);
|
$result = $this->db->addKind($data);
|
||||||
|
|
||||||
return json_encode($data);
|
return json_encode($data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Löscht ein Kind
|
||||||
public function deleteKind($kindId){
|
public function deleteKind($kindId){
|
||||||
$result = $this->db->deleteKind($kindId);
|
$result = $this->db->deleteKind($kindId);
|
||||||
|
|
||||||
|
@ -10,6 +10,15 @@ use kindergartenverwaltung\Model\BenutzerModel;
|
|||||||
|
|
||||||
class BenutzerModel extends Database{
|
class BenutzerModel extends Database{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Updated einen Benutzer
|
||||||
|
*
|
||||||
|
* @param $elternId Die Id des Elternaccounts
|
||||||
|
* @param $data Die gegebenen Daten
|
||||||
|
*
|
||||||
|
*/
|
||||||
public function updateBenutzer($elternId, $data){
|
public function updateBenutzer($elternId, $data){
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
@ -40,6 +49,13 @@ class BenutzerModel extends Database{
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Fügt einen neuen Benutzer in der Datenbank hinzu
|
||||||
|
*
|
||||||
|
* @param $data Die gegebenen Daten
|
||||||
|
*
|
||||||
|
*/
|
||||||
public function insertBenutzer($data){
|
public function insertBenutzer($data){
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ public function getKind($parentId){
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
*
|
||||||
* Updated die Daten eines Kindes
|
* Updated die Daten eines Kindes
|
||||||
*
|
*
|
||||||
* @param $kindId Id des Kindes
|
* @param $kindId Id des Kindes
|
||||||
@ -76,6 +77,9 @@ public function updateKind($kindId, $data){
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
*
|
||||||
|
* Fügt ein Kind mit gegebenen Daten in die Datenbank hinzu
|
||||||
|
*
|
||||||
* @param $data Die Daten für das neue Kind
|
* @param $data Die Daten für das neue Kind
|
||||||
*/
|
*/
|
||||||
public function addKind($data){
|
public function addKind($data){
|
||||||
@ -112,7 +116,13 @@ public function addKind($data){
|
|||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Löscht ein Kind mit einer gegebenen Id aus der Datenbank
|
||||||
|
*
|
||||||
|
* @param $kindId Die Id des zu löschenden Kindes
|
||||||
|
*
|
||||||
|
*/
|
||||||
public function deleteKind($kindId){
|
public function deleteKind($kindId){
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user