Compare commits
No commits in common. "f96f7c3549fd22be4ecd6869cd8312ba401a7a1c" and "3378e669163df1382d31ec2d3aef6aa584ec4d3a" have entirely different histories.
f96f7c3549
...
3378e66916
@ -5,7 +5,7 @@
|
||||
namespace ppb\Controller;
|
||||
|
||||
use ppb\Library\Msg;
|
||||
use ppb\Model\BestellungModel;
|
||||
use ppb\Model\GerichtModel;
|
||||
|
||||
class BestellungController {
|
||||
|
||||
|
@ -1,38 +0,0 @@
|
||||
<?php
|
||||
//Programmiert von: Max Heer, Getestet von:
|
||||
|
||||
namespace ppb\Controller;
|
||||
|
||||
use ppb\Libary\Msg;
|
||||
use ppb\Model\InhaltsstoffModel;
|
||||
|
||||
class InhaltsstoffController
|
||||
{
|
||||
|
||||
private $db;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->db = new InhaltsstoffModel();
|
||||
}
|
||||
|
||||
|
||||
public function getInhaltsstoff()
|
||||
{
|
||||
$result = $this->db->getInhaltsstoff();
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
public function insertInhaltsstoff($data)
|
||||
{
|
||||
$result = $this->db->insertInhaltsstoff($data);
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
public function deleteInhaltsstoff($id)
|
||||
{
|
||||
$result = $this->db->deleteInhaltsstoff($id);
|
||||
return json_encode($result);
|
||||
}
|
||||
}
|
||||
?>
|
@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace ppb\Model;
|
||||
|
||||
use ppb\Library\Msg;
|
||||
|
||||
class InhaltsstoffModel extends Database
|
||||
{
|
||||
|
||||
public function getInhaltsstoff()
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$sql = "SELECT * FROM Inhaltsstoff";
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute();
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function insertInhaltsstoff($data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$params = array();
|
||||
$sql = "INSERT INTO Inhaltsstoff ";
|
||||
foreach ($data as $index => $value) {
|
||||
$sql .= "" . $index . ",";
|
||||
}
|
||||
$sql = substr($sql, 0, strlen($sql) - 1) . ") VALUES (";
|
||||
|
||||
foreach ($data as $index => $value) {
|
||||
$sql .= "':" . $index . "',";
|
||||
$params[":" . $index] = $value;
|
||||
}
|
||||
|
||||
$sql = substr($sql, 0, strlen($sql) - 1) . ");";
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
return true;
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function deleteInhaltsstoff($id)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$params = array();
|
||||
$sql = "DELETE FROM Inhalsstoff WHERE id=:id";
|
||||
$params[":id"] = $id;
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
return true;
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user