mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
42 lines
1,007 B
PHP
42 lines
1,007 B
PHP
<?php
|
|
include $_SESSION["docroot"].'/php/classes.recipe.php';
|
|
$book = new cookbook;
|
|
|
|
switch ($_GET["function"]) {
|
|
case 'del':
|
|
$book->removeRecipe($_POST["id"]);
|
|
break;
|
|
|
|
case 'new':
|
|
$book->newRecipe($_POST["recipeName"], $_POST["recipeDuration"], $_POST["recipeDescription"], $_POST["ingredient"]);
|
|
header('Location: /recipes');
|
|
break;
|
|
|
|
case 'auto':
|
|
$book->getAllIngredientsContaining($_POST["q"]);
|
|
break;
|
|
|
|
case 'edit':
|
|
$book->getRecipe($_POST["id"]);
|
|
echo json_encode($book->sites[0]);
|
|
break;
|
|
|
|
case 'update':
|
|
$book->updateRecipe($_POST["id"], $_POST["recipeName"], $_POST["recipeDuration"], $_POST["recipeDescription"], $_POST["ingredient"]);
|
|
header(("Location: /recipe/".$_POST["id"]));
|
|
break;
|
|
|
|
case 'export':
|
|
$book->fillCookbook();
|
|
echo json_encode($book);
|
|
break;
|
|
|
|
case 'import':
|
|
$book->importCookbook();
|
|
break;
|
|
|
|
default:
|
|
// code...
|
|
break;
|
|
}
|
|
?>
|