2019-05-23 08:58:48 +02:00
|
|
|
<script src="/js/recipe.js" charset="utf-8"></script>
|
2018-10-24 15:00:27 +02:00
|
|
|
<?php
|
|
|
|
include $_SESSION["docroot"].'/php/classes.recipe.php';
|
|
|
|
$book = new cookbook;
|
|
|
|
$book->getRecipe($_GET["number"]);
|
|
|
|
$recipe = $book->sites[0];
|
|
|
|
?>
|
2019-05-19 18:37:00 +02:00
|
|
|
|
2019-05-23 11:58:26 +02:00
|
|
|
<div class="dropdown text-right mt-5">
|
2019-05-19 18:37:00 +02:00
|
|
|
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
|
Menü
|
|
|
|
</button>
|
|
|
|
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenuButton">
|
|
|
|
<a class="dropdown-item" href="#" id="addToList"><i class="fas fa-cart-plus"></i> Zur Einkaufsliste hinzufügen</a>
|
|
|
|
<a class="dropdown-item" href="/edit-recipe/<?php echo $recipe->ID; ?>"><i class="fas fa-edit"></i> Bearbeiten</a>
|
|
|
|
<a class="dropdown-item" href="#" id="delRecipe"><i class="fas fa-trash-alt"></i> Löschen</a>
|
|
|
|
</div>
|
2018-10-24 15:00:27 +02:00
|
|
|
</div>
|
2019-05-19 18:37:00 +02:00
|
|
|
|
|
|
|
<?php
|
|
|
|
echo '<div class="container mb-5">';
|
|
|
|
echo "<h1 data-recipeid='$recipe->ID'>$recipe->Name</h1>";
|
|
|
|
echo '</div>';
|
|
|
|
|
2019-05-20 08:38:56 +02:00
|
|
|
echo '<div class="card mw-50 mb-3">';
|
2019-05-19 18:37:00 +02:00
|
|
|
echo "<div class='card-body' id='ingredients'>";
|
|
|
|
echo "<h2 class='card-title'>Zutaten</h2>";
|
|
|
|
foreach($recipe->Zutaten as $index => $Zutat){
|
|
|
|
if($index%2==0){$div_item_row_color_classes="bg-primary";}
|
|
|
|
else{$div_item_row_color_classes="bg-secondary";}
|
|
|
|
print_r("<div class='d-flex flex-row rounded m-1 p-1 pl-3 font-weight-bold text-light $div_item_row_color_classes' data-amount='$Zutat->Menge' data-unit='$Zutat->Einheit' data-name='$Zutat->Name'>");
|
|
|
|
print_r("<div class='p-0 col-3 d-flex flex-row'>$Zutat->Menge $Zutat->Einheit</div>");
|
|
|
|
print_r("<div class='col-7'>$Zutat->Name</div>");
|
|
|
|
print_r("</div>");
|
|
|
|
}
|
|
|
|
echo "</div>";
|
|
|
|
|
2019-06-04 11:20:52 +02:00
|
|
|
echo "<div class='recipe-card-body card-body embed-responsive-16by9'>";
|
2019-05-19 18:37:00 +02:00
|
|
|
echo "<h2 class='card-title'>Zubereitung</h2>";
|
2019-06-04 11:20:52 +02:00
|
|
|
echo $recipe->Beschreibung;
|
2019-05-19 18:37:00 +02:00
|
|
|
echo "</div>";
|
|
|
|
|
|
|
|
echo '</div>';
|
|
|
|
?>
|