mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
44 lines
947 B
PHP
44 lines
947 B
PHP
<?php
|
|
include $_SESSION["docroot"].'/php/classes.list.php';
|
|
$shopping = new shopping;
|
|
|
|
switch ($_GET["function"]) {
|
|
case 'new':
|
|
$newID = $shopping->newItem($_POST["anzahl"], $_POST["einheit"], $_POST["name"]);
|
|
setcookie("newItem", "$newID", 0, "/", "");
|
|
header("Location: /list");
|
|
break;
|
|
|
|
case 'multiple':
|
|
$shopping->newItems($_POST["list"]);
|
|
break;
|
|
|
|
case 'change':
|
|
$shopping->changeSingleItem($_POST["id"], $_POST["anzahl"], $_POST["einheit"], $_POST["name"]);
|
|
break;
|
|
|
|
case 'del':
|
|
$shopping->removeSingleItem($_POST["id"]);
|
|
break;
|
|
|
|
case 'clear':
|
|
$shopping->removeChecked();
|
|
break;
|
|
|
|
case 'check':
|
|
$shopping->check($_POST["id"], $_POST["status"]);
|
|
break;
|
|
|
|
case 'export':
|
|
echo json_encode($shopping);
|
|
break;
|
|
|
|
case 'import':
|
|
$shopping->import();
|
|
break;
|
|
|
|
default:
|
|
// code...
|
|
break;
|
|
}
|
|
?>
|