Compare commits
8 Commits
3378e66916
...
f96f7c3549
Author | SHA1 | Date | |
---|---|---|---|
f96f7c3549 | |||
9122289393 | |||
23df80f0db | |||
78ba32377b | |||
5765d49e01 | |||
c28a3eb452 | |||
e4003ad37d | |||
7e034abf8c |
@ -5,7 +5,7 @@
|
|||||||
namespace ppb\Controller;
|
namespace ppb\Controller;
|
||||||
|
|
||||||
use ppb\Library\Msg;
|
use ppb\Library\Msg;
|
||||||
use ppb\Model\GerichtModel;
|
use ppb\Model\BestellungModel;
|
||||||
|
|
||||||
class BestellungController {
|
class BestellungController {
|
||||||
|
|
||||||
|
38
Controller/InhaltsstoffController.php
Normal file
38
Controller/InhaltsstoffController.php
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
66
Model/InhaltsstoffModel.php
Normal file
66
Model/InhaltsstoffModel.php
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<?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