This commit is contained in:
Samuel Wolff 2023-12-18 08:45:12 +01:00
parent 9122289393
commit f96f7c3549
2 changed files with 57 additions and 36 deletions

View File

@ -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
{
private $db;
public function __construct()
{
$this->db = new InhaltsstoffModel();
}
public function getInhaltsstoff()
{
$result = $this->db->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);
} }
}
?> ?>

View File

@ -1,15 +1,20 @@
<?php <?php
namespace VPR_Schnittstelle\EnthaeltModel;
use kindergartenverwaltung\Library\Msg;
public function getInhaltsstoff(){ namespace ppb\Model;
use ppb\Library\Msg;
class InhaltsstoffModel extends Database
{
public function getInhaltsstoff()
{
$pdo = $this->linkDB(); $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,7 +22,8 @@
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 ";
@ -37,13 +43,13 @@
$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";
@ -52,9 +58,9 @@
$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;
} }
} }
}
?> ?>