56 lines
949 B
PHP
56 lines
949 B
PHP
<?php
|
|
|
|
// Programmiert durch Samuel Wolff
|
|
// Getestet durch: Samuel Wolff
|
|
|
|
namespace ppb\Controller;
|
|
|
|
use ppb\Library\Msg;
|
|
use ppb\Model\BenutzerModel;
|
|
|
|
class BenutzerController
|
|
{
|
|
|
|
private $db;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->db = new BenutzerModel();
|
|
}
|
|
|
|
// Updated einen Benutzer
|
|
public function updateBenutzer($elternId, $data)
|
|
{
|
|
|
|
$result = $this->db->updateBenutzer($elternId, $data);
|
|
|
|
return json_encode($result);
|
|
|
|
}
|
|
|
|
// Fügt einen Benutzer in die Datenbank hinzu
|
|
public function writeBenutzer($data)
|
|
{
|
|
$result = $this->db->insertBenutzer($data);
|
|
|
|
return json_encode($data);
|
|
}
|
|
|
|
|
|
public function nextId()
|
|
{
|
|
$result = $this->db->nextId();
|
|
|
|
return json_encode($result);
|
|
}
|
|
|
|
public function anmeldeVersuch($data)
|
|
{
|
|
$result = $this->db->anmeldeVersuch($data);
|
|
|
|
return json_encode($result);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|