Example #1
0
 public function setSteps($steps)
 {
     foreach ($steps as $step) {
         $recipe_step = new \ChopShopper\Entity\RecipeStep();
         if (isset($step['directions'])) {
             $recipe_step->setDirections($step['directions']);
         }
         if (isset($step['step_ingredients'])) {
             $recipe_step->setStepIngredients($step['step_ingredients']);
         }
         $recipe_step->setRecipe($this);
         $this->addStep($recipe_step);
     }
     return $this;
 }