32 lines
519 B
PHP
32 lines
519 B
PHP
|
<?php
|
||
|
//Erstellt durch Stefan Groß - Samuel Wolff
|
||
|
namespace ppb\Controller;
|
||
|
|
||
|
use ppb\Model\FilterModel;
|
||
|
|
||
|
class FilterController
|
||
|
{
|
||
|
private $db;
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
|
||
|
$this->db = new FilterModel();
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
public function writeFilter($data)
|
||
|
{
|
||
|
$results = $this->db->insertFilter($data);
|
||
|
|
||
|
return json_encode($results);
|
||
|
}
|
||
|
|
||
|
public function deleteFilter($id)
|
||
|
{
|
||
|
$results = $this->db->deleteFilter($id);
|
||
|
|
||
|
return json_encode($results);
|
||
|
}
|
||
|
}
|