Fixes
This commit is contained in:
parent
9f7060d202
commit
c598e48006
@ -8,26 +8,30 @@ namespace ppb\Controller;
|
||||
use ppb\Library\Msg;
|
||||
use ppb\Model\BenutzerModel;
|
||||
|
||||
class BenutzerController{
|
||||
class BenutzerController
|
||||
{
|
||||
|
||||
private $db;
|
||||
|
||||
public function __construct(){
|
||||
public function __construct()
|
||||
{
|
||||
$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($elternId, $data);
|
||||
|
||||
return json_encode($result);
|
||||
|
||||
}
|
||||
|
||||
// Fügt einen Benutzer in die Datenbank hinzu
|
||||
public function insertBenutzer($data){
|
||||
$result = $this->db->insertBenutzer($data)
|
||||
public function insertBenutzer($data)
|
||||
{
|
||||
$result = $this->db->insertBenutzer($data);
|
||||
|
||||
return json_encode($data);
|
||||
}
|
||||
|
@ -6,13 +6,24 @@
|
||||
use kindergartenverwaltung\Libary\Msg;
|
||||
use kindergartenverwaltung\Model\EnthaeltModel;
|
||||
|
||||
class EnthaeltController(){
|
||||
public function getInhaltsstoffe($gerichtId){
|
||||
class EnthaeltController
|
||||
{
|
||||
|
||||
private $db;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->db = new EnthaeltModel();
|
||||
}
|
||||
|
||||
public function getInhaltsstoffe($gerichtId)
|
||||
{
|
||||
$result = $this->db->getEnthaelt($gerichtId);
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
public function insertEnthaelt($data){
|
||||
public function insertEnthaelt($data)
|
||||
{
|
||||
$result = $this->db->insertEnthaelt($data);
|
||||
return json_encode($result);
|
||||
}
|
||||
|
@ -8,38 +8,44 @@ namespace ppb\Controller;
|
||||
use ppb\Library\Msg;
|
||||
use ppb\Model\KindModel;
|
||||
|
||||
class KindController{
|
||||
class KindController
|
||||
{
|
||||
|
||||
private $db;
|
||||
|
||||
public function __construct(){
|
||||
public function __construct()
|
||||
{
|
||||
$this->db = new KindModel();
|
||||
}
|
||||
|
||||
// $parentId ist standardmäßig auf false und gibt damit alle Kinder aus,
|
||||
// das setzen gibt nur Kinder eines bestimmten Benutzerkontos aus.
|
||||
public function getKind($parentId = false){
|
||||
public function getKind($parentId = false)
|
||||
{
|
||||
$result = $this->db->getKind($parentId);
|
||||
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
// Updated ein Kind
|
||||
public function updateKind($kindId, $data){
|
||||
public function updateKind($kindId, $data)
|
||||
{
|
||||
$result = $this->db->updateKind($kindId, $data);
|
||||
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
// Fügt ein Kind hinzu
|
||||
public function addKind($data){
|
||||
public function addKind($data)
|
||||
{
|
||||
$result = $this->db->addKind($data);
|
||||
|
||||
return json_encode($data);
|
||||
}
|
||||
|
||||
// Löscht ein Kind
|
||||
public function deleteKind($kindId){
|
||||
public function deleteKind($kindId)
|
||||
{
|
||||
$result = $this->db->deleteKind($kindId);
|
||||
|
||||
return $result;
|
||||
|
@ -6,9 +6,9 @@
|
||||
namespace ppb\Controller;
|
||||
|
||||
use ppb\Library\Msg;
|
||||
use ppb\Model\BenutzerModel;
|
||||
|
||||
class BenutzerModel extends Database{
|
||||
class BenutzerModel extends Database
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
@ -19,12 +19,13 @@ class BenutzerModel extends Database{
|
||||
* @param $data Die gegebenen Daten
|
||||
*
|
||||
*/
|
||||
public function updateBenutzer($elternId, $data){
|
||||
public function updateBenutzer($elternId, $data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
$params = array();
|
||||
|
||||
$sql = "UPDATE Benutzer SET"
|
||||
$sql = "UPDATE Benutzer SET";
|
||||
|
||||
foreach ($data as $index => $value) {
|
||||
$sql .= " " . $index . " = :" . $index;
|
||||
@ -33,13 +34,12 @@ class BenutzerModel extends Database{
|
||||
|
||||
$sql .= " WHERE id = :benutzerId;";
|
||||
|
||||
$params[":benutzerId"] = $kindId;
|
||||
$params[":benutzerId"] = $elternId;
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->excute($params);
|
||||
}
|
||||
catch(\PDOException $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -56,7 +56,8 @@ class BenutzerModel extends Database{
|
||||
* @param $data Die gegebenen Daten
|
||||
*
|
||||
*/
|
||||
public function insertBenutzer($data){
|
||||
public function insertBenutzer($data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
$params = array();
|
||||
@ -80,8 +81,7 @@ class BenutzerModel extends Database{
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->excute($params);
|
||||
}
|
||||
catch(\PDOException $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -4,13 +4,15 @@ namespace ppb\Model;
|
||||
|
||||
use ppb\Library\Msg;
|
||||
|
||||
class BestellungModel extends Database {
|
||||
class BestellungModel extends Database
|
||||
{
|
||||
|
||||
/**
|
||||
* Sucht die Bestellung in der Datenbank und gibt diese im json-Format zurück.
|
||||
* @param $id gibt die id, des gesuchten Objektes an. Wenn keine id angegeben wird, werden alle Einträge ausgegeben
|
||||
*/
|
||||
public function selectBestellung($id = false) {
|
||||
public function selectBestellung($id = false)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "SELECT * FROM Bestellung";
|
||||
$params = array();
|
||||
@ -23,8 +25,7 @@ class BestellungModel extends Database {
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
}
|
||||
catch(\PDOException $e) {
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
return false;
|
||||
}
|
||||
@ -42,14 +43,15 @@ class BestellungModel extends Database {
|
||||
* Fügt ein Bestellung in die Datenbank ein.
|
||||
* @param $data gibt die Attribute des Datensatzes an.
|
||||
*/
|
||||
public function insertBestellung($data) {
|
||||
public function insertBestellung($data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "INSERT INTO Bestellung (" . implode(",", array_keys($data)) . ") VALUES(:" . implode(",:", array_keys($data)) . ")";
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$result = $stmt->execute($data);
|
||||
}catch (\PDOExpecion $e) {
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
}
|
||||
return $result;
|
||||
@ -60,9 +62,10 @@ class BestellungModel extends Database {
|
||||
* @param $id des Datensatzes
|
||||
* @param $data neue Parameter des Datensatzes
|
||||
*/
|
||||
public function updateBestellung($id, $data){
|
||||
public function updateBestellung($id, $data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "UPDATE Bestellung SET "
|
||||
$sql = "UPDATE Bestellung SET ";
|
||||
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
||||
foreach (array_keys($data) as $key) {
|
||||
$sql .= $key . " = :" . $key . ",";
|
||||
@ -72,7 +75,7 @@ class BestellungModel extends Database {
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$result = $stmt->execute($data);
|
||||
}catch (\PDOExpection $e){
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
return false;
|
||||
}
|
||||
@ -83,7 +86,8 @@ class BestellungModel extends Database {
|
||||
* Löscht ein Bestellung aus der Tabelle
|
||||
* @param $id des zu löschenden Bestellung
|
||||
*/
|
||||
public function deleteBestellung($id){
|
||||
public function deleteBestellung($id)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "DELETE FROM Bestellung WHERE id = :id";
|
||||
$params = array();
|
||||
@ -91,7 +95,7 @@ class BestellungModel extends Database {
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$result = $stmt->execute($params);
|
||||
}catch (\PDOExpection $e){
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
return false;
|
||||
}
|
||||
|
@ -4,13 +4,15 @@ namespace ppb\Model;
|
||||
|
||||
use ppb\Library\Msg;
|
||||
|
||||
class GerichtModel extends Database {
|
||||
class GerichtModel extends Database
|
||||
{
|
||||
|
||||
/**
|
||||
* Sucht die Gerichte in der Datenbank und gibt diese im json-Format zurück.
|
||||
* @param $id gibt die id, des gesuchten Objektes an. Wenn keine id angegeben wird, werden alle Einträge ausgegeben
|
||||
*/
|
||||
public function selectGericht($id = false) {
|
||||
public function selectGericht($id = false)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "SELECT * FROM Gericht";
|
||||
$params = array();
|
||||
@ -23,8 +25,7 @@ class GerichtModel extends Database {
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
}
|
||||
catch(\PDOException $e) {
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
return false;
|
||||
}
|
||||
@ -42,14 +43,15 @@ class GerichtModel extends Database {
|
||||
* Fügt ein Gericht in die Datenbank ein.
|
||||
* @param $data gibt die Attribute des Datensatzes an.
|
||||
*/
|
||||
public function insertGericht($data) {
|
||||
public function insertGericht($data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "INSERT INTO Gericht (" . implode(",", array_keys($data)) . ") VALUES(:" . implode(",:", array_keys($data)) . ")";
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$result = $stmt->execute($data);
|
||||
}catch (\PDOExpecion $e) {
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
}
|
||||
return $result;
|
||||
@ -60,9 +62,10 @@ class GerichtModel extends Database {
|
||||
* @param $id des Datensatzes
|
||||
* @param $data neue Parameter des Datensatzes
|
||||
*/
|
||||
public function updateGericht($id, $data){
|
||||
public function updateGericht($id, $data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "UPDATE Gericht SET "
|
||||
$sql = "UPDATE Gericht SET ";
|
||||
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
||||
foreach (array_keys($data) as $key) {
|
||||
$sql .= $key . " = :" . $key . ",";
|
||||
@ -72,7 +75,7 @@ class GerichtModel extends Database {
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$result = $stmt->execute($data);
|
||||
}catch (\PDOExpection $e){
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
return false;
|
||||
}
|
||||
@ -83,7 +86,8 @@ class GerichtModel extends Database {
|
||||
* Löscht ein Gericht aus der Tabelle
|
||||
* @param $id des zu löschenden Gerichtes
|
||||
*/
|
||||
public function deleteGericht($id){
|
||||
public function deleteGericht($id)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "DELETE FROM Gericht WHERE id = :id";
|
||||
$params = array();
|
||||
@ -91,7 +95,7 @@ class GerichtModel extends Database {
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$result = $stmt->execute($params);
|
||||
}catch (\PDOExpection $e){
|
||||
} catch (\PDOException $e) {
|
||||
echo $e;
|
||||
return false;
|
||||
}
|
||||
|
@ -8,9 +8,11 @@ namespace ppb\Model;
|
||||
use ppb\Library\Msg;
|
||||
|
||||
|
||||
class KindModel extends Database{
|
||||
class KindModel extends Database
|
||||
{
|
||||
|
||||
public function getKind($parentId){
|
||||
public function getKind($parentId)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
$params = array();
|
||||
@ -27,8 +29,7 @@ public function getKind($parentId){
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
}
|
||||
catch(\PDOException $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -44,7 +45,8 @@ public function getKind($parentId){
|
||||
* @param $kindId Id des Kindes
|
||||
* @param $data Json encoded Daten mit den neuen Werten
|
||||
*/
|
||||
public function updateKind($kindId, $data){
|
||||
public function updateKind($kindId, $data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
$params = array();
|
||||
@ -65,9 +67,8 @@ public function updateKind($kindId, $data){
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->excute($params);
|
||||
}
|
||||
catch(\PDOException $e){
|
||||
$stmt->execute($params);
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -82,7 +83,8 @@ public function updateKind($kindId, $data){
|
||||
*
|
||||
* @param $data Die Daten für das neue Kind
|
||||
*/
|
||||
public function addKind($data){
|
||||
public function addKind($data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
$params = array();
|
||||
@ -105,9 +107,8 @@ public function addKind($data){
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->excute($params);
|
||||
}
|
||||
catch(\PDOException $e){
|
||||
$stmt->execute($params);
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -123,7 +124,8 @@ public function addKind($data){
|
||||
* @param $kindId Die Id des zu löschenden Kindes
|
||||
*
|
||||
*/
|
||||
public function deleteKind($kindId){
|
||||
public function deleteKind($kindId)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
$params = array();
|
||||
@ -134,9 +136,8 @@ public function deleteKind($kindId){
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->excute($params);
|
||||
}
|
||||
catch(\PDOException $e){
|
||||
$stmt->execute($params);
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user