fixes
This commit is contained in:
parent
9122289393
commit
f96f7c3549
@ -1,23 +1,38 @@
|
||||
<?php
|
||||
//Programmiert von: Max Heer, Getestet von:
|
||||
|
||||
namespace VPR_Schnittstelle\Controller;
|
||||
namespace ppb\Controller;
|
||||
|
||||
use VPR_Schnittstelle\Libary\Msg;
|
||||
use VPR_Schnittstelle\Model\InhaltsstoffModel;
|
||||
use ppb\Libary\Msg;
|
||||
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();
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
public function insertInhaltsstoff($data){
|
||||
public function insertInhaltsstoff($data)
|
||||
{
|
||||
$result = $this->db->insertInhaltsstoff($data);
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
public function deleteInhaltsstoff($id){
|
||||
public function deleteInhaltsstoff($id)
|
||||
{
|
||||
$result = $this->db->deleteInhaltsstoff($id);
|
||||
return json_encode($result);
|
||||
}
|
||||
}
|
||||
?>
|
@ -1,15 +1,20 @@
|
||||
<?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();
|
||||
$sql = "SELECT * FROM Inhaltsstoff";
|
||||
try {
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute();
|
||||
}
|
||||
catch(\PDOExeption $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
||||
@ -17,7 +22,8 @@
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function insertInhaltsstoff($data){
|
||||
public function insertInhaltsstoff($data)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$params = array();
|
||||
$sql = "INSERT INTO Inhaltsstoff ";
|
||||
@ -37,13 +43,13 @@
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
return true;
|
||||
}
|
||||
catch(\PDOExeption $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function deleteInhaltsstoff($id){
|
||||
public function deleteInhaltsstoff($id)
|
||||
{
|
||||
$pdo = $this->linkDB();
|
||||
$params = array();
|
||||
$sql = "DELETE FROM Inhalsstoff WHERE id=:id";
|
||||
@ -52,9 +58,9 @@
|
||||
$stmt = $pdo->prepare($sql);
|
||||
$stmt->execute($params);
|
||||
return true;
|
||||
}
|
||||
catch(\PDOExeption $e){
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user