services CalendarService: include link to mealplan in calendar descriptions

This commit is contained in:
Kurt Riddlesperger 2019-09-30 12:12:06 -05:00
parent 8642d5219c
commit c742bfeeec

View File

@ -99,7 +99,8 @@ class CalendarService extends BaseService
$mealPlanRecipeEvents[] = array( $mealPlanRecipeEvents[] = array(
'title' => $titlePrefix . FindObjectInArrayByPropertyValue($recipes, 'id', $recipeOfCurrentDay->includes_recipe_id)->name, 'title' => $titlePrefix . FindObjectInArrayByPropertyValue($recipes, 'id', $recipeOfCurrentDay->includes_recipe_id)->name,
'start' => FindObjectInArrayByPropertyValue($recipes, 'id', $recipeOfCurrentDay->recipe_id)->name, 'start' => FindObjectInArrayByPropertyValue($recipes, 'id', $recipeOfCurrentDay->recipe_id)->name,
'date_format' => 'date' 'date_format' => 'date',
'description' => GROCY_BASE_URL . '/mealplan' . '?week=' . FindObjectInArrayByPropertyValue($recipes, 'id', $recipeOfCurrentDay->recipe_id)->name
); );
} }
} }