コード例 #1
0
ファイル: recipes.php プロジェクト: michaelgumtow/oop-basics
<?php

$recipe1 = new Recipe("Belgium Waffles");
$recipe1->setIngredients([["ingredient" => "egg", "amount" => "1", "measure" => null], ["ingredient" => "sugar", "amount" => "1/2", "measure" => "Cup"]]);
$recipe1->addIngredient("melted butter", "1", "Cup");
$recipe1->addIngredient("vanilla", "2", "tsp");
$recipe1->addIngredient("baking powder", "1", "Tbs");
$recipe1->addIngredient("flour", "2", "Cups");
$recipe1->addIngredient("milk", "1 1/2", "Cups");
$recipe1->addInstruction("Separate eggs. Whip egg whites until stiff peaks form. Set asside.");
$recipe1->addInstruction("Melt butter. Combine the rest of the ingredients except milk and mix well. Slowly add milk until combined.");
$recipe1->addInstruction("Fold in egg whites. Follow instructions on waffle maker or add 1/2 cup of batter to waffle iron and cook for 4 minutes.");
$recipe1->setYield("4 one cup servings");
$recipe1->setTags("breakfast");
$recipe2 = new Recipe("Italian Lemon Chicken");
$recipe2->addIngredient("Pasta, boiled", "1", "lbs");
$recipe2->addIngredient("Chicken Breast", "2", "lbs");
$recipe2->addIngredient("olive oil", "1/2", "Cup");
$recipe2->addIngredient("chopped garlic", "2", "Tbls");
$recipe2->addIngredient("lemon juice", "1/4", "Cup");
$recipe2->addIngredient("sugar", "1/2", "tsp");
$recipe2->addIngredient("parsley", "2", "tsp");
$recipe2->addIngredient("oregano", "2", "tsp");
$recipe2->addIngredient("basil", "1", "Tbls");
$recipe2->addIngredient("parmesian cheese to taste");
$recipe2->addInstruction("In a large skillet on medium high heat, saute garlic in olive oil for 3 minutes. Cut chicken into bite sized pieces.");
$recipe2->addInstruction("Add additional ingredients to sauce pan and cover for 5 minutes or untill chicken is almost completely white.");
$recipe2->addInstruction("Remove lid and cook until reduced to a thick sauce.");
$recipe2->addInstruction("Serve over pasta with " . $recipe2->getLastIngredient());
$recipe2->setYield("6 Servings");
$recipe2->setTags(["Main Dish", "Dinner"]);
コード例 #2
0
ファイル: account.php プロジェクト: armourjami/armourtake
 public function update_recipe()
 {
     $flash_string = '';
     if (Session::exists('account')) {
         $flash_string = Session::flash('account');
     }
     $user = new User();
     if ($user->isLoggedIn()) {
         if (Input::exists()) {
             //First Validate the recipe data sent
             //Update recipe data
             Recipe::updateFields(Input::get('recipe_id'), ['yeild' => Input::get('recipe_yeild'), 'yeildUnit' => Input::get('recipe_unit'), 'method' => filter_var(Input::get('recipe_method'), FILTER_SANITIZE_SPECIAL_CHARS, FILTER_FLAG_ENCODE_HIGH), 'recipeName' => Input::get('recipe_name'), 'recipeCost' => Input::get('recipe_cost')]);
             //foreach ingredient
             $currentIds = array_column(Recipe::getIngredients(Input::get('recipe_id')), 'id');
             $i = 0;
             while (Input::get('id' . $i) !== '') {
                 $id = Input::get('id' . $i);
                 if (!in_array($id, $currentIds)) {
                     //create it
                     Recipe::addIngredient(Input::get('recipe_id'), $id, Input::get('quantity' . $i), Input::get('unit' . $i));
                     echo var_dump($currentIds);
                 } else {
                     //modify the Ingredient
                     Recipe::changeIngredientUnit(Input::get('recipe_id'), $id, Input::get('unit' . $i));
                     Recipe::changeIngredientQuantity(Input::get('recipe_id'), $id, Input::get('quantity' . $i));
                     //tick off $currentId from the list of $currentIds
                     $key = array_search($id, $currentIds);
                     echo 'removing from array id No.' . $currentIds[$key] . "\n";
                     unset($currentIds[$key]);
                 }
                 $i++;
             }
             //if there are any ingredients left in $currentIds then they have been deleted
             echo var_dump($currentIds);
             if (count($currentIds)) {
                 foreach ($currentIds as $id) {
                     echo $id . " being deleted\n";
                     Recipe::deleteIngredient(Input::get('recipe_id'), $id);
                 }
             }
             Session::flash('account', $error_string);
             //redirect here
             Redirect::to('account/recipes');
         } else {
             $this->view('account/recipes', ['register' => true, 'loggedIn' => 1, 'flash' => $flash_string, 'name' => $user->data()->name, 'page_name' => "", 'user_id' => $user->data()->id]);
         }
     } else {
         Session::flash('home', 'You have been logged out, please log back in');
         Redirect::to('home');
     }
 }