Compare commits
No commits in common. "3378e669163df1382d31ec2d3aef6aa584ec4d3a" and "9f7060d20293770dcff1122142794e1bc8a7e852" have entirely different histories.
3378e66916
...
9f7060d202
@ -8,30 +8,26 @@ namespace ppb\Controller;
|
|||||||
use ppb\Library\Msg;
|
use ppb\Library\Msg;
|
||||||
use ppb\Model\BenutzerModel;
|
use ppb\Model\BenutzerModel;
|
||||||
|
|
||||||
class BenutzerController
|
class BenutzerController{
|
||||||
{
|
|
||||||
|
|
||||||
private $db;
|
private $db;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct(){
|
||||||
{
|
|
||||||
$this->db = new BenutzerModel();
|
$this->db = new BenutzerModel();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Updated einen Benutzer
|
// Updated einen Benutzer
|
||||||
public function updateBenutzer($elternId, $data)
|
public function updateBenutzer($elternId, $data){
|
||||||
{
|
|
||||||
|
|
||||||
$result = $this->db->updateBenutzer($elternId, $data);
|
$result = $this->db->updateBenutzer($benutzerId, $data);
|
||||||
|
|
||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fügt einen Benutzer in die Datenbank hinzu
|
// 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);
|
|
||||||
|
|
||||||
return json_encode($data);
|
return json_encode($data);
|
||||||
}
|
}
|
||||||
|
@ -1,29 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
//Programmiert von: Max Heer, Getestet von:
|
//Programmiert von: Max Heer, Getestet von:
|
||||||
|
|
||||||
namespace ppb\Controller;
|
namespace kindergartenverwaltung\Controller;
|
||||||
|
|
||||||
use ppb\Libary\Msg;
|
use kindergartenverwaltung\Libary\Msg;
|
||||||
use ppb\Model\EnthaeltModel;
|
use kindergartenverwaltung\Model\EnthaeltModel;
|
||||||
|
|
||||||
class EnthaeltController
|
class EnthaeltController(){
|
||||||
{
|
public function getInhaltsstoffe($gerichtId){
|
||||||
|
|
||||||
private $db;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->db = new EnthaeltModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getInhaltsstoffe($gerichtId)
|
|
||||||
{
|
|
||||||
$result=$this->db->getEnthaelt($gerichtId);
|
$result=$this->db->getEnthaelt($gerichtId);
|
||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function insertEnthaelt($data)
|
public function insertEnthaelt($data){
|
||||||
{
|
|
||||||
$result=$this->db->insertEnthaelt($data);
|
$result=$this->db->insertEnthaelt($data);
|
||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
}
|
}
|
||||||
|
@ -8,44 +8,38 @@ namespace ppb\Controller;
|
|||||||
use ppb\Library\Msg;
|
use ppb\Library\Msg;
|
||||||
use ppb\Model\KindModel;
|
use ppb\Model\KindModel;
|
||||||
|
|
||||||
class KindController
|
class KindController{
|
||||||
{
|
|
||||||
|
|
||||||
private $db;
|
private $db;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct(){
|
||||||
{
|
|
||||||
$this->db = new KindModel();
|
$this->db = new KindModel();
|
||||||
}
|
}
|
||||||
|
|
||||||
// $parentId ist standardmäßig auf false und gibt damit alle Kinder aus,
|
// $parentId ist standardmäßig auf false und gibt damit alle Kinder aus,
|
||||||
// das setzen gibt nur Kinder eines bestimmten Benutzerkontos 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);
|
$result = $this->db->getKind($parentId);
|
||||||
|
|
||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Updated ein Kind
|
// 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
|
// 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
|
// Löscht ein Kind
|
||||||
public function deleteKind($kindId)
|
public function deleteKind($kindId){
|
||||||
{
|
|
||||||
$result = $this->db->deleteKind($kindId);
|
$result = $this->db->deleteKind($kindId);
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
|
@ -3,12 +3,12 @@
|
|||||||
// Programmiert durch Samuel Wolff
|
// Programmiert durch Samuel Wolff
|
||||||
// Getestet durch: Nicht getestet
|
// Getestet durch: Nicht getestet
|
||||||
|
|
||||||
namespace ppb\Model;
|
namespace ppb\Controller;
|
||||||
|
|
||||||
use ppb\Library\Msg;
|
use ppb\Library\Msg;
|
||||||
|
use ppb\Model\BenutzerModel;
|
||||||
|
|
||||||
class BenutzerModel extends Database
|
class BenutzerModel extends Database{
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -19,13 +19,12 @@ class BenutzerModel extends Database
|
|||||||
* @param $data Die gegebenen Daten
|
* @param $data Die gegebenen Daten
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function updateBenutzer($elternId, $data)
|
public function updateBenutzer($elternId, $data){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
$params = array();
|
$params = array();
|
||||||
|
|
||||||
$sql = "UPDATE Benutzer SET";
|
$sql = "UPDATE Benutzer SET"
|
||||||
|
|
||||||
foreach($data as $index=>$value){
|
foreach($data as $index=>$value){
|
||||||
$sql .= " ".$index." = :".$index;
|
$sql .= " ".$index." = :".$index;
|
||||||
@ -34,12 +33,13 @@ class BenutzerModel extends Database
|
|||||||
|
|
||||||
$sql .= " WHERE id = :benutzerId;";
|
$sql .= " WHERE id = :benutzerId;";
|
||||||
|
|
||||||
$params[":benutzerId"] = $elternId;
|
$params[":benutzerId"] = $kindId;
|
||||||
|
|
||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->excute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOException $e){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,8 +56,7 @@ class BenutzerModel extends Database
|
|||||||
* @param $data Die gegebenen Daten
|
* @param $data Die gegebenen Daten
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function insertBenutzer($data)
|
public function insertBenutzer($data){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -80,8 +79,9 @@ class BenutzerModel extends Database
|
|||||||
|
|
||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->excute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOException $e){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,15 +4,13 @@ namespace ppb\Model;
|
|||||||
|
|
||||||
use ppb\Library\Msg;
|
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.
|
* 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
|
* @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();
|
$pdo = $this -> linkDB();
|
||||||
$sql = "SELECT * FROM Bestellung";
|
$sql = "SELECT * FROM Bestellung";
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -25,7 +23,8 @@ class BestellungModel extends Database
|
|||||||
try {
|
try {
|
||||||
$stmt = $pdo -> prepare($sql);
|
$stmt = $pdo -> prepare($sql);
|
||||||
$stmt -> execute($params);
|
$stmt -> execute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOException $e) {
|
||||||
echo $e;
|
echo $e;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -43,15 +42,14 @@ class BestellungModel extends Database
|
|||||||
* Fügt ein Bestellung in die Datenbank ein.
|
* Fügt ein Bestellung in die Datenbank ein.
|
||||||
* @param $data gibt die Attribute des Datensatzes an.
|
* @param $data gibt die Attribute des Datensatzes an.
|
||||||
*/
|
*/
|
||||||
public function insertBestellung($data)
|
public function insertBestellung($data) {
|
||||||
{
|
|
||||||
$pdo = $this -> linkDB();
|
$pdo = $this -> linkDB();
|
||||||
$sql = "INSERT INTO Bestellung (" . implode(",", array_keys($data)) . ") VALUES(:" . implode(",:", array_keys($data)) . ")";
|
$sql = "INSERT INTO Bestellung (" . implode(",", array_keys($data)) . ") VALUES(:" . implode(",:", array_keys($data)) . ")";
|
||||||
|
|
||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$result = $stmt->execute($data);
|
$result = $stmt->execute($data);
|
||||||
} catch (\PDOException $e) {
|
}catch (\PDOExpecion $e) {
|
||||||
echo $e;
|
echo $e;
|
||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
@ -62,10 +60,9 @@ class BestellungModel extends Database
|
|||||||
* @param $id des Datensatzes
|
* @param $id des Datensatzes
|
||||||
* @param $data neue Parameter des Datensatzes
|
* @param $data neue Parameter des Datensatzes
|
||||||
*/
|
*/
|
||||||
public function updateBestellung($id, $data)
|
public function updateBestellung($id, $data){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
$sql = "UPDATE Bestellung SET ";
|
$sql = "UPDATE Bestellung SET "
|
||||||
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
||||||
foreach (array_keys($data) as $key){
|
foreach (array_keys($data) as $key){
|
||||||
$sql .= $key . " = :" . $key. ",";
|
$sql .= $key . " = :" . $key. ",";
|
||||||
@ -75,7 +72,7 @@ class BestellungModel extends Database
|
|||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$result = $stmt->execute($data);
|
$result = $stmt->execute($data);
|
||||||
} catch (\PDOException $e) {
|
}catch (\PDOExpection $e){
|
||||||
echo $e;
|
echo $e;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -86,8 +83,7 @@ class BestellungModel extends Database
|
|||||||
* Löscht ein Bestellung aus der Tabelle
|
* Löscht ein Bestellung aus der Tabelle
|
||||||
* @param $id des zu löschenden Bestellung
|
* @param $id des zu löschenden Bestellung
|
||||||
*/
|
*/
|
||||||
public function deleteBestellung($id)
|
public function deleteBestellung($id){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
$sql = "DELETE FROM Bestellung WHERE id = :id";
|
$sql = "DELETE FROM Bestellung WHERE id = :id";
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -95,7 +91,7 @@ class BestellungModel extends Database
|
|||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$result = $stmt->execute($params);
|
$result = $stmt->execute($params);
|
||||||
} catch (\PDOException $e) {
|
}catch (\PDOExpection $e){
|
||||||
echo $e;
|
echo $e;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -1,22 +1,20 @@
|
|||||||
<?php
|
<?php
|
||||||
|
namespace kindergartenverwaltung\EnthaeltModel;
|
||||||
|
|
||||||
namespace ppb\Model;
|
use kindergartenverwaltung\Library\Msg;
|
||||||
|
|
||||||
use ppb\Library\Msg;
|
class EnthaeltModel extends Database{
|
||||||
|
|
||||||
class EnthaeltModel extends Database
|
public function getEnthaelt($gerichtId){
|
||||||
{
|
|
||||||
|
|
||||||
public function getEnthaelt($gerichtId)
|
|
||||||
{
|
|
||||||
$pdo=$this->linkDB();
|
$pdo=$this->linkDB();
|
||||||
$params = array();
|
$params = array();
|
||||||
$sql = "SELECT * FROM Enthaelt WHERE gid = :gerichtId;";
|
$sql = "SELECT * FROM Enthaelt WHERE gid = :gerichtId;";
|
||||||
$params[":gerichtId"] = $gerichtId;
|
$params[":gerichtId"] = gerichtId;
|
||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->execute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOExeption $e){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||||
@ -24,8 +22,7 @@ class EnthaeltModel extends Database
|
|||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function insertEnthaelt($data)
|
public function insertEnthaelt($data){
|
||||||
{
|
|
||||||
$pdo=$this->linkDB();
|
$pdo=$this->linkDB();
|
||||||
$params = array();
|
$params = array();
|
||||||
$sql = "INSERT INTO Enthaelt (";
|
$sql = "INSERT INTO Enthaelt (";
|
||||||
@ -46,7 +43,8 @@ class EnthaeltModel extends Database
|
|||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->execute($params);
|
||||||
return true;
|
return true;
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOExeption $e){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,15 +4,13 @@ namespace ppb\Model;
|
|||||||
|
|
||||||
use ppb\Library\Msg;
|
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.
|
* 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
|
* @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();
|
$pdo = $this -> linkDB();
|
||||||
$sql = "SELECT * FROM Gericht";
|
$sql = "SELECT * FROM Gericht";
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -25,7 +23,8 @@ class GerichtModel extends Database
|
|||||||
try {
|
try {
|
||||||
$stmt = $pdo -> prepare($sql);
|
$stmt = $pdo -> prepare($sql);
|
||||||
$stmt -> execute($params);
|
$stmt -> execute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOException $e) {
|
||||||
echo $e;
|
echo $e;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -43,15 +42,14 @@ class GerichtModel extends Database
|
|||||||
* Fügt ein Gericht in die Datenbank ein.
|
* Fügt ein Gericht in die Datenbank ein.
|
||||||
* @param $data gibt die Attribute des Datensatzes an.
|
* @param $data gibt die Attribute des Datensatzes an.
|
||||||
*/
|
*/
|
||||||
public function insertGericht($data)
|
public function insertGericht($data) {
|
||||||
{
|
|
||||||
$pdo = $this -> linkDB();
|
$pdo = $this -> linkDB();
|
||||||
$sql = "INSERT INTO Gericht (" . implode(",", array_keys($data)) . ") VALUES(:" . implode(",:", array_keys($data)) . ")";
|
$sql = "INSERT INTO Gericht (" . implode(",", array_keys($data)) . ") VALUES(:" . implode(",:", array_keys($data)) . ")";
|
||||||
|
|
||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$result = $stmt->execute($data);
|
$result = $stmt->execute($data);
|
||||||
} catch (\PDOException $e) {
|
}catch (\PDOExpecion $e) {
|
||||||
echo $e;
|
echo $e;
|
||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
@ -62,10 +60,9 @@ class GerichtModel extends Database
|
|||||||
* @param $id des Datensatzes
|
* @param $id des Datensatzes
|
||||||
* @param $data neue Parameter des Datensatzes
|
* @param $data neue Parameter des Datensatzes
|
||||||
*/
|
*/
|
||||||
public function updateGericht($id, $data)
|
public function updateGericht($id, $data){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
$sql = "UPDATE Gericht SET ";
|
$sql = "UPDATE Gericht SET "
|
||||||
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
//Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein
|
||||||
foreach (array_keys($data) as $key){
|
foreach (array_keys($data) as $key){
|
||||||
$sql .= $key . " = :" . $key. ",";
|
$sql .= $key . " = :" . $key. ",";
|
||||||
@ -75,7 +72,7 @@ class GerichtModel extends Database
|
|||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$result = $stmt->execute($data);
|
$result = $stmt->execute($data);
|
||||||
} catch (\PDOException $e) {
|
}catch (\PDOExpection $e){
|
||||||
echo $e;
|
echo $e;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -86,8 +83,7 @@ class GerichtModel extends Database
|
|||||||
* Löscht ein Gericht aus der Tabelle
|
* Löscht ein Gericht aus der Tabelle
|
||||||
* @param $id des zu löschenden Gerichtes
|
* @param $id des zu löschenden Gerichtes
|
||||||
*/
|
*/
|
||||||
public function deleteGericht($id)
|
public function deleteGericht($id){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
$sql = "DELETE FROM Gericht WHERE id = :id";
|
$sql = "DELETE FROM Gericht WHERE id = :id";
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -95,7 +91,7 @@ class GerichtModel extends Database
|
|||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$result = $stmt->execute($params);
|
$result = $stmt->execute($params);
|
||||||
} catch (\PDOException $e) {
|
}catch (\PDOExpection $e){
|
||||||
echo $e;
|
echo $e;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -8,11 +8,9 @@ namespace ppb\Model;
|
|||||||
use ppb\Library\Msg;
|
use ppb\Library\Msg;
|
||||||
|
|
||||||
|
|
||||||
class KindModel extends Database
|
class KindModel extends Database{
|
||||||
{
|
|
||||||
|
|
||||||
public function getKind($parentId)
|
public function getKind($parentId){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -29,7 +27,8 @@ class KindModel extends Database
|
|||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->execute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOException $e){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,8 +44,7 @@ class KindModel extends Database
|
|||||||
* @param $kindId Id des Kindes
|
* @param $kindId Id des Kindes
|
||||||
* @param $data Json encoded Daten mit den neuen Werten
|
* @param $data Json encoded Daten mit den neuen Werten
|
||||||
*/
|
*/
|
||||||
public function updateKind($kindId, $data)
|
public function updateKind($kindId, $data){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -67,8 +65,9 @@ class KindModel extends Database
|
|||||||
|
|
||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->excute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOException $e){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,8 +82,7 @@ class KindModel extends Database
|
|||||||
*
|
*
|
||||||
* @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){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -107,8 +105,9 @@ class KindModel extends Database
|
|||||||
|
|
||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->excute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOException $e){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,8 +123,7 @@ class KindModel extends Database
|
|||||||
* @param $kindId Die Id des zu löschenden Kindes
|
* @param $kindId Die Id des zu löschenden Kindes
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function deleteKind($kindId)
|
public function deleteKind($kindId){
|
||||||
{
|
|
||||||
$pdo = $this->linkDB();
|
$pdo = $this->linkDB();
|
||||||
|
|
||||||
$params = array();
|
$params = array();
|
||||||
@ -136,8 +134,9 @@ class KindModel extends Database
|
|||||||
|
|
||||||
try{
|
try{
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->excute($params);
|
||||||
} catch (\PDOException $e) {
|
}
|
||||||
|
catch(\PDOException $e){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user