This commit is contained in:
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
//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 VPR_Schnittstelle\Model\InhaltsstoffModel;
use ppb\Libary\Msg;
use ppb\Model\InhaltsstoffModel;
public function getInhaltsstoff(){
$result=$this->db->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){
$result=$this->db->insertInhaltsstoff($data);
public function insertInhaltsstoff($data)
{
$result = $this->db->insertInhaltsstoff($data);
return json_encode($result);
}
public function deleteInhaltsstoff($id){
$result=$this->db->deleteInhaltsstoff($id);
public function deleteInhaltsstoff($id)
{
$result = $this->db->deleteInhaltsstoff($id);
return json_encode($result);
}
}
?>