├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── composer.json ├── ecs.php ├── phpstan.neon └── src ├── Recipe.php ├── assetbundles ├── recipe │ ├── RecipeAsset.php │ └── dist │ │ ├── css │ │ └── Recipe.css │ │ ├── img │ │ └── Recipe-icon.svg │ │ └── js │ │ └── Recipe.js └── recipefield │ ├── RecipeFieldAsset.php │ └── dist │ ├── css │ └── Recipe.css │ ├── img │ ├── Healthy-icon.svg │ ├── Recipe-icon.svg │ ├── Star-icon.svg │ ├── healthy.svg │ ├── icon.svg │ └── star.svg │ └── js │ └── Recipe.js ├── config.php ├── console └── controllers │ └── NutritionApiController.php ├── controllers └── NutritionApiController.php ├── fields └── Recipe.php ├── helpers ├── Json.php └── PluginTemplate.php ├── icon.svg ├── integrations └── RecipeFeedMeField.php ├── models ├── Recipe.php └── Settings.php ├── services ├── NutritionApi.php └── ServicesTrait.php ├── templates ├── _components │ └── fields │ │ ├── Recipe_input.twig │ │ └── Recipe_settings.twig ├── _integrations │ └── feed-me.twig ├── recipe-nutrition-facts.twig ├── settings.twig └── welcome.twig └── translations └── en └── recipe.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/composer.json -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/ecs.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/Recipe.php -------------------------------------------------------------------------------- /src/assetbundles/recipe/RecipeAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipe/RecipeAsset.php -------------------------------------------------------------------------------- /src/assetbundles/recipe/dist/css/Recipe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipe/dist/css/Recipe.css -------------------------------------------------------------------------------- /src/assetbundles/recipe/dist/img/Recipe-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipe/dist/img/Recipe-icon.svg -------------------------------------------------------------------------------- /src/assetbundles/recipe/dist/js/Recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipe/dist/js/Recipe.js -------------------------------------------------------------------------------- /src/assetbundles/recipefield/RecipeFieldAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/RecipeFieldAsset.php -------------------------------------------------------------------------------- /src/assetbundles/recipefield/dist/css/Recipe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/dist/css/Recipe.css -------------------------------------------------------------------------------- /src/assetbundles/recipefield/dist/img/Healthy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/dist/img/Healthy-icon.svg -------------------------------------------------------------------------------- /src/assetbundles/recipefield/dist/img/Recipe-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/dist/img/Recipe-icon.svg -------------------------------------------------------------------------------- /src/assetbundles/recipefield/dist/img/Star-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/dist/img/Star-icon.svg -------------------------------------------------------------------------------- /src/assetbundles/recipefield/dist/img/healthy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/dist/img/healthy.svg -------------------------------------------------------------------------------- /src/assetbundles/recipefield/dist/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/dist/img/icon.svg -------------------------------------------------------------------------------- /src/assetbundles/recipefield/dist/img/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/dist/img/star.svg -------------------------------------------------------------------------------- /src/assetbundles/recipefield/dist/js/Recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/assetbundles/recipefield/dist/js/Recipe.js -------------------------------------------------------------------------------- /src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/config.php -------------------------------------------------------------------------------- /src/console/controllers/NutritionApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/console/controllers/NutritionApiController.php -------------------------------------------------------------------------------- /src/controllers/NutritionApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/controllers/NutritionApiController.php -------------------------------------------------------------------------------- /src/fields/Recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/fields/Recipe.php -------------------------------------------------------------------------------- /src/helpers/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/helpers/Json.php -------------------------------------------------------------------------------- /src/helpers/PluginTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/helpers/PluginTemplate.php -------------------------------------------------------------------------------- /src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/icon.svg -------------------------------------------------------------------------------- /src/integrations/RecipeFeedMeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/integrations/RecipeFeedMeField.php -------------------------------------------------------------------------------- /src/models/Recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/models/Recipe.php -------------------------------------------------------------------------------- /src/models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/models/Settings.php -------------------------------------------------------------------------------- /src/services/NutritionApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/services/NutritionApi.php -------------------------------------------------------------------------------- /src/services/ServicesTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/services/ServicesTrait.php -------------------------------------------------------------------------------- /src/templates/_components/fields/Recipe_input.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/templates/_components/fields/Recipe_input.twig -------------------------------------------------------------------------------- /src/templates/_components/fields/Recipe_settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/templates/_components/fields/Recipe_settings.twig -------------------------------------------------------------------------------- /src/templates/_integrations/feed-me.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/templates/_integrations/feed-me.twig -------------------------------------------------------------------------------- /src/templates/recipe-nutrition-facts.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/templates/recipe-nutrition-facts.twig -------------------------------------------------------------------------------- /src/templates/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/templates/settings.twig -------------------------------------------------------------------------------- /src/templates/welcome.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/templates/welcome.twig -------------------------------------------------------------------------------- /src/translations/en/recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft-recipe/HEAD/src/translations/en/recipe.php --------------------------------------------------------------------------------