fixes
This commit is contained in:
parent
9122289393
commit
f96f7c3549
@ -1,23 +1,38 @@
|
|||||||
<?php
|
<?php
|
||||||
//Programmiert von: Max Heer, Getestet von:
|
//Programmiert von: Max Heer, Getestet von:
|
||||||
|
|
||||||
namespace VPR_Schnittstelle\Controller;
|
namespace ppb\Controller;
|
||||||
|
|
||||||
use VPR_Schnittstelle\Libary\Msg;
|
use ppb\Libary\Msg;
|
||||||
use VPR_Schnittstelle\Model\InhaltsstoffModel;
|
use ppb\Model\InhaltsstoffModel;
|
||||||
|
|
||||||
public function getInhaltsstoff(){
|
class InhaltsstoffController
|
||||||
$result=$this->db->getInhaltsstoff();
|
{
|
||||||
|
|
||||||
|
private $db;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->db = new InhaltsstoffModel();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function getInhaltsstoff()
|
||||||
|
{
|
||||||
|
$result = $this->db->getInhaltsstoff();
|
||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function insertInhaltsstoff($data){
|
public function insertInhaltsstoff($data)
|
||||||
$result=$this->db->insertInhaltsstoff($data);
|
{
|
||||||
|
$result = $this->db->insertInhaltsstoff($data);
|
||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function deleteInhaltsstoff($id){
|
public function deleteInhaltsstoff($id)
|
||||||
$result=$this->db->deleteInhaltsstoff($id);
|
{
|
||||||
|
$result = $this->db->deleteInhaltsstoff($id);
|
||||||
return json_encode($result);
|
return json_encode($result);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
@ -1,15 +1,20 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace VPR_Schnittstelle\EnthaeltModel;
|
|
||||||
use kindergartenverwaltung\Library\Msg;
|
|
||||||
|
|
||||||
public function getInhaltsstoff(){
|
namespace ppb\Model;
|
||||||
$pdo=$this->linkDB();
|
|
||||||
|
use ppb\Library\Msg;
|
||||||
|
|
||||||
|
class InhaltsstoffModel extends Database
|
||||||
|
{
|
||||||
|
|
||||||
|
public function getInhaltsstoff()
|
||||||
|
{
|
||||||
|
$pdo = $this->linkDB();
|
||||||
$sql = "SELECT * FROM Inhaltsstoff";
|
$sql = "SELECT * FROM Inhaltsstoff";
|
||||||
try{
|
try {
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
}
|
} catch (\PDOException $e) {
|
||||||
catch(\PDOExeption $e){
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||||
@ -17,44 +22,45 @@
|
|||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function insertInhaltsstoff($data){
|
public function insertInhaltsstoff($data)
|
||||||
$pdo=$this->linkDB();
|
{
|
||||||
|
$pdo = $this->linkDB();
|
||||||
$params = array();
|
$params = array();
|
||||||
$sql = "INSERT INTO Inhaltsstoff ";
|
$sql = "INSERT INTO Inhaltsstoff ";
|
||||||
foreach($data as $index=>$value){
|
foreach ($data as $index => $value) {
|
||||||
$sql .= "".$index.",";
|
$sql .= "" . $index . ",";
|
||||||
}
|
}
|
||||||
$sql = substr($sql,0,strlen($sql)-1).") VALUES (";
|
$sql = substr($sql, 0, strlen($sql) - 1) . ") VALUES (";
|
||||||
|
|
||||||
foreach($data as $index=>$value){
|
foreach ($data as $index => $value) {
|
||||||
$sql .= "':".$index."',";
|
$sql .= "':" . $index . "',";
|
||||||
$params[":".$index] = $value;
|
$params[":" . $index] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = substr($sql,0,strlen($sql)-1).");";
|
$sql = substr($sql, 0, strlen($sql) - 1) . ");";
|
||||||
|
|
||||||
try{
|
try {
|
||||||
$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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function deleteInhaltsstoff($id){
|
public function deleteInhaltsstoff($id)
|
||||||
$pdo=$this->linkDB();
|
{
|
||||||
|
$pdo = $this->linkDB();
|
||||||
$params = array();
|
$params = array();
|
||||||
$sql = "DELETE FROM Inhalsstoff WHERE id=:id";
|
$sql = "DELETE FROM Inhalsstoff WHERE id=:id";
|
||||||
$params[":id"] = $id;
|
$params[":id"] = $id;
|
||||||
try{
|
try {
|
||||||
$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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user