faxxen
This commit is contained in:
parent
e730377103
commit
bbb5ebcbac
@ -44,9 +44,9 @@ class BenutzerController
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
public function anmeldeVersuch($data)
|
||||
public function anmeldeVersuch()
|
||||
{
|
||||
$result = $this->db->anmeldeVersuch($data);
|
||||
$result = $this->db->anmeldeVersuch();
|
||||
|
||||
return json_encode($result);
|
||||
}
|
||||
|
@ -33,5 +33,11 @@ class TagesplanController
|
||||
$result = $this->db->deleteTagesplan($id);
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
public function getGerichteOnTag()
|
||||
{
|
||||
$result = $this->db->getGerichteOnTag();
|
||||
return json_encode($result);
|
||||
}
|
||||
}
|
||||
?>
|
@ -64,6 +64,13 @@ class TagesplanModel extends Database
|
||||
} catch (\PDOException $e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function getGerichteOnTag()
|
||||
{
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user