Symfony Exception

TypeError

HTTP 500 Internal Server Error

Argument 1 passed to Twig\Extra\String\StringExtension::createSlug() must be of the type string, null given, called in /var/www/TMRC/TMRC-Recipes/var/cache/prod/twig/02/0266e7ff6e826827b170ec2a7dbf2bfd4ebae102a87613040b68ea25ee7da1d1.php on line 47

Exception

TypeError

  1.     public function createUnicodeString(?string $text): UnicodeString
  2.     {
  3.         return new UnicodeString($text ?? '');
  4.     }
  5.     public function createSlug(string $stringstring $separator '-', ?string $locale null): AbstractUnicodeString
  6.     {
  7.         return $this->slugger->slug($string$separator$locale);
  8.     }
  9. }
  1. (isset($context["recipeModel"]) || array_key_exists("recipeModel"$context) ? $context["recipeModel"] : (function () { throw new RuntimeError('Variable "recipeModel" does not exist.'3$this->source); })()), "user", [], "any"falsefalsefalse3), "username", [], "any"falsefalsefalse3), "%category-title%" => ((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source,         // line 4
  2. ($context["recipeModel"] ?? null), "category", [], "any"falsetruefalse4), "title", [], "any"truetruefalse4)) ? (_twig_default_filter(twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["recipeModel"] ?? null), "category", [], "any"falsetruefalse4), "title", [], "any"falsefalsefalse4), "")) : (""))]);
  3.         // line 6
  4.         $context["metaUrl"] = $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("tmrc_recipe_view", ["uuid" => twig_get_attribute($this->env$this->source,         // line 7
  5. (isset($context["recipeModel"]) || array_key_exists("recipeModel"$context) ? $context["recipeModel"] : (function () { throw new RuntimeError('Variable "recipeModel" does not exist.'7$this->source); })()), "id", [], "any"falsefalsefalse7), "categoryCode" => (((twig_get_attribute($this->env$this->source,         // line 8
  6. (isset($context["recipeModel"]) || array_key_exists("recipeModel"$context) ? $context["recipeModel"] : (function () { throw new RuntimeError('Variable "recipeModel" does not exist.'8$this->source); })()), "category", [], "any"falsefalsefalse8)) ? (($this->extensions['Twig\Extra\String\StringExtension']->createSlug(twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["recipeModel"]) || array_key_exists("recipeModel"$context) ? $context["recipeModel"] : (function () { throw new RuntimeError('Variable "recipeModel" does not exist.'8$this->source); })()), "category", [], "any"falsefalsefalse8), "title", [], "any"falsefalsefalse8)) . "-")) : ("")) . (isset($context["recipe_url_slug"]) || array_key_exists("recipe_url_slug"$context) ? $context["recipe_url_slug"] : (function () { throw new RuntimeError('Variable "recipe_url_slug" does not exist.'8$this->source); })())), "recipeSlug" => $this->extensions['Twig\Extra\String\StringExtension']->createSlug(twig_get_attribute($this->env$this->source,         // line 9
  7. (isset($context["recipeModel"]) || array_key_exists("recipeModel"$context) ? $context["recipeModel"] : (function () { throw new RuntimeError('Variable "recipeModel" does not exist.'9$this->source); })()), "title", [], "any"falsefalsefalse9))]);
  8.         // line 22
  9.         echo "<title>";
  10.         echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("recipe.meta.page_title", ["%recipe-title%" => twig_get_attribute($this->env$this->source,         // line 23
  11. (isset($context["recipeModel"]) || array_key_exists("recipeModel"$context) ? $context["recipeModel"] : (function () { throw new RuntimeError('Variable "recipeModel" does not exist.'23$this->source); })()), "title", [], "any"falsefalsefalse23), "%author-username%" => twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source,         // line 24
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context, \func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('@TmrcEsi/recipe/view_meta.html.twig', array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp')) in Tmrc/EsiBundle/Controller/RecipeController.php (line 139)
  1.     public function viewMetaAction($uuid)
  2.     {
  3.         $recipeModel $this->get('tmrc_recipe.elastic_recipe_service')->getRecipe($uuidtrue);
  4.         $response $this->render('@TmrcEsi/recipe/view_meta.html.twig', [
  5.             'recipeModel' => $recipeModel,
  6.             'uuid'        => $uuid,
  7.         ]);
  8.         return $response;
  9.     }
in vendor/symfony/http-kernel/HttpKernel.php -> viewMetaAction (line 163)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/TMRC/TMRC-Recipes/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

No log messages

Stack Trace

TypeError
TypeError:
Argument 1 passed to Twig\Extra\String\StringExtension::createSlug() must be of the type string, null given, called in /var/www/TMRC/TMRC-Recipes/var/cache/prod/twig/02/0266e7ff6e826827b170ec2a7dbf2bfd4ebae102a87613040b68ea25ee7da1d1.php on line 47

  at vendor/twig/string-extra/StringExtension.php:43
  at Twig\Extra\String\StringExtension->createSlug(null)
     (var/cache/prod/twig/02/0266e7ff6e826827b170ec2a7dbf2bfd4ebae102a87613040b68ea25ee7da1d1.php:47)
  at __TwigTemplate_8a49cf3c8b5c03885265199291dec868ee467acdd4e603dc99d550c755dfebc0->doDisplay(array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp', 'shariffServices' => array('Facebook', 'Twitter', 'Pinterest', 'Whatsapp', 'Mail', 'Clipboard'), 'app' => object(AppVariable), 'tinymce_images' => array('imageupl' => array('title' => 'Obrázek', 'image' => '/bundles/tmrcfront/images/tinymce_icons/add-image.png'), 'counterclock' => array('title' => 'Zpětný chod', 'image' => '/bundles/tmrcfront/images/tinymce_icons/counterclock.png'), 'nocounterclock' => array('title' => 'Vypnout zpětný chod', 'image' => '/bundles/tmrcfront/images/tinymce_icons/nocounterclock.png'), 'corn' => array('title' => 'Těsto', 'image' => '/bundles/tmrcfront/images/tinymce_icons/corn.png'), 'soft' => array('title' => 'Jemné míchání', 'image' => '/bundles/tmrcfront/images/tinymce_icons/soft.png'), 'locked' => array('title' => 'Zamknout mixovací nádobu', 'image' => '/bundles/tmrcfront/images/tinymce_icons/locked.png'), 'blend' => array('title' => 'Mixování', 'image' => '/bundles/tmrcfront/images/tinymce_icons/blend.png'), 'kettle' => array('title' => 'Varná konvice', 'image' => '/bundles/tmrcfront/images/tinymce_icons/kettle.png'), 'warm_up' => array('title' => 'Ohřev', 'image' => '/bundles/tmrcfront/images/tinymce_icons/warm_up.png'), 'slow_cook' => array('title' => 'Pomalé vaření', 'image' => '/bundles/tmrcfront/images/tinymce_icons/slow_cook.png'), 'thickening' => array('title' => 'Zahušťování', 'image' => '/bundles/tmrcfront/images/tinymce_icons/thickening.png'), 'sous_vide' => array('title' => 'Sous-vide', 'image' => '/bundles/tmrcfront/images/tinymce_icons/sous_vide.png'), 'ferment' => array('title' => 'Fermentování', 'image' => '/bundles/tmrcfront/images/tinymce_icons/ferment.png')), 'tmrc_emoticons' => array('smile' => array('variants' => array(':)', ':-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/smile.png', 'title' => 'Smile'), 'lol' => array('variants' => array(':D', ':-D'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/lol.png', 'title' => 'Lol'), 'bigsmile' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/bigsmile.png', 'title' => 'Big Smile'), 'wink' => array('variants' => array(';)', ';-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/wink.png', 'title' => 'Wink'), 'tongue' => array('variants' => array(':p', ':-p'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/tongue.png', 'title' => 'Tongue'), 'stare' => array('variants' => array(':|', ':-|'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/flat.png', 'title' => 'Stare'), 'sad' => array('variants' => array(':(', ':-('), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/aw.png', 'title' => 'Sad'), 'puzzled' => array('variants' => array(':~', ':-~'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/puzzled.png', 'title' => 'Puzzled'), 'cry' => array('variants' => array(':((', ':-(('), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/sad.png', 'title' => 'Cry'), 'cool' => array('variants' => array('8)', '8-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cool.png', 'title' => 'Cool'), 'steve' => array('variants' => array('8)', '8-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/steve.png', 'title' => 'Steve'), 'crazy' => array('variants' => array('J)', 'J-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/crazy.png', 'title' => 'Crazy'), 'glasses' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/glasses.png', 'title' => 'Glasses'), 'party' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/party.png', 'title' => 'Party'), 'love' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/love.png', 'title' => 'Love'), 'cooking_6' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_6.gif', 'title' => 'Cooking 6'), 'cooking_9' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_9.gif', 'title' => 'Cooking 9'), 'cooking_7' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_7.gif', 'title' => 'Cooking 7'), 'cooking_2' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_2.gif', 'title' => 'Cooking 2'), 'cooking_1' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_1.gif', 'title' => 'Cooking 1'), 'cooking_10' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_10.gif', 'title' => 'Cooking 10'), 'cooking_4' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_4.gif', 'title' => 'Cooking 4')), 'front_base_url' => 'cz.test.tmrc.vorwerk.com', 'thermostars_enabled' => false, 'community' => array('locale' => 'cs_CZ', 'language' => 'cs', 'country' => 'CZ', 'timezone' => 'Europe/Prague', 'date_format' => array('default' => array('front_end' => 'dd.mm.yy', 'back_end' => 'd.m.Y', 'short' => 'dd.MM.yyyy', 'long' => 'd. MMMM yyyy - HH:mm'))), 'tinymce' => array('language' => 'cz', 'custom' => false), 'facebook' => array('app_id' => 'change_me', 'permissions' => array('email', 'user_birthday', 'user_location')), 'piwik' => array('site_id' => -9, 'domain' => 'my.thermomixrecipes.com', 'server_domain' => 'piwik.thermomix.com', 'clickheat' => array('enabled' => false, 'group_routes' => array('tmrc_homepage' => 'homepage', 'tmrc_search_recipe_search' => 'recipesearch', 'tmrc_forum_overview_page' => 'forum', 'tmrc_recipe_view_short' => 'recipes', 'tmrc_recipe_view' => 'recipes', 'tmrc_search_categorylist_index' => 'category_overview', 'tmrc_search_recipe_categoryDisplay' => 'category_recipe_list'))), 'cookie_consent' => array('enabled' => false, 'colors' => array('background' => '#113c2b', 'text' => '#ffffff', 'button_background' => '#009c3b', 'button_text' => '#ffffff'), 'position' => 'bottom', 'static' => 'false', 'theme' => 'block'), 'recipe_url_slug' => 'recepty', 'max_teaser_length' => 150, 'images' => array('mood_search' => 'https://tmrcv3-staging-en.s3.amazonaws.com/assets/bundles/tmrcfront/newlayout/images/mood_search.jpg'), 'google_maps_api_key' => 'change_me', 'drupal_base_url' => 'https://cz.test.tmrc.vorwerk.com', 'content_api_base_url' => 'https://cz.test.tmrc.vorwerk.com/content_api/get', 'send_message_base_url' => '/messages/new', 'friend_request_base_url' => '/flag/confirm/flag/friend', 'unfriend_request_base_url' => '/flag/confirm/unfriend/friend', 'hide_suggestion_base_url' => '/my/friends/hidesuggestion', 'error_logging_base_url' => 'https://cz.test.tmrc.vorwerk.com/login/api.php', 'date_format' => array('default' => array('front_end' => 'dd.mm.yy', 'back_end' => 'd.m.Y', 'short' => 'dd.MM.yyyy', 'long' => 'd. MMMM yyyy - HH:mm')), 'datetime_format' => array('default' => array('front_end' => 'dd.mm.yy', 'back_end' => 'd.m.Y', 'short' => 'dd.MM.yyyy', 'long' => 'd. MMMM yyyy - HH:mm')), 'number_format' => array('default' => array('thousands_sep' => ' ', 'dec_point' => ',')), 'daily_recipe_title_max_length' => 100, 'accessories_buy_url' => 'http://shop.vorwerk.cz/thermomix-cz/prislusenstvi.html', 'use_shariff' => false, 'recipe_image_required' => true, 'recipe_required_submit_to_review' => false, 'enable_fb_login' => false, 'base_domain' => 'cz.test.tmrc.vorwerk.com', 'google_tag_manager' => false, 'google_tag_manager_auth' => false, 'google_tag_manager_ua_id' => false, 'google_analytics_optimize_id' => 'GTM-TBRJ9F7', 'de_aktion_apfel' => false, 'recipe_note_enabled' => true, 'require_voting_with_comment' => false, 'user_follow_enabled' => true, 'user_gdpr_export_enabled' => true, 'user_gdpr_delete_enabled' => true, 'friend_feature_enabled' => true, 'pinterest_frame_for_recipe_sharing' => true, 'hide_newsletter_banner' => false, 'hide_dynamic_banner' => false, 'user_star_enabled' => false, 'recipe_allow_embed_video' => true, 'cookidoo_widget' => array('enabled' => true, 'script_url' => '//assets.cookidoo.io/a2c/a2c.js', 'partner_id' => 'rezeptwelt-b20807', 'lang' => 'cs', 'market' => 'cookidoo.cz'), 'onetrust_cookie_consent' => array('enabled' => false, 'domain_script' => 'c3f21cac-77e8-48ad-8ed4-35b33401d887'), 'survey_popup' => array('enabled' => false), 'popup_inform_terms_update' => array('enabled' => false), 'popup_warning_unsafe_link' => array('enabled' => true), 'popup_warning_spam_messages' => array('enabled' => false), 'switch_ui' => array('enabled' => false), 'picture_consent' => array('enabled' => false), 'anniversary' => array('enabled' => false), 'meta_pixel' => array('enabled' => false, 'id' => 391086323051416), 'metaDescription' => 'Recipe Medový večer by Vorwerk vývoj receptů, learn to make this recipe easily in your kitchen machine and discover other Thermomix recipes in .'), array())
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp', 'shariffServices' => array('Facebook', 'Twitter', 'Pinterest', 'Whatsapp', 'Mail', 'Clipboard'), 'app' => object(AppVariable), 'tinymce_images' => array('imageupl' => array('title' => 'Obrázek', 'image' => '/bundles/tmrcfront/images/tinymce_icons/add-image.png'), 'counterclock' => array('title' => 'Zpětný chod', 'image' => '/bundles/tmrcfront/images/tinymce_icons/counterclock.png'), 'nocounterclock' => array('title' => 'Vypnout zpětný chod', 'image' => '/bundles/tmrcfront/images/tinymce_icons/nocounterclock.png'), 'corn' => array('title' => 'Těsto', 'image' => '/bundles/tmrcfront/images/tinymce_icons/corn.png'), 'soft' => array('title' => 'Jemné míchání', 'image' => '/bundles/tmrcfront/images/tinymce_icons/soft.png'), 'locked' => array('title' => 'Zamknout mixovací nádobu', 'image' => '/bundles/tmrcfront/images/tinymce_icons/locked.png'), 'blend' => array('title' => 'Mixování', 'image' => '/bundles/tmrcfront/images/tinymce_icons/blend.png'), 'kettle' => array('title' => 'Varná konvice', 'image' => '/bundles/tmrcfront/images/tinymce_icons/kettle.png'), 'warm_up' => array('title' => 'Ohřev', 'image' => '/bundles/tmrcfront/images/tinymce_icons/warm_up.png'), 'slow_cook' => array('title' => 'Pomalé vaření', 'image' => '/bundles/tmrcfront/images/tinymce_icons/slow_cook.png'), 'thickening' => array('title' => 'Zahušťování', 'image' => '/bundles/tmrcfront/images/tinymce_icons/thickening.png'), 'sous_vide' => array('title' => 'Sous-vide', 'image' => '/bundles/tmrcfront/images/tinymce_icons/sous_vide.png'), 'ferment' => array('title' => 'Fermentování', 'image' => '/bundles/tmrcfront/images/tinymce_icons/ferment.png')), 'tmrc_emoticons' => array('smile' => array('variants' => array(':)', ':-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/smile.png', 'title' => 'Smile'), 'lol' => array('variants' => array(':D', ':-D'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/lol.png', 'title' => 'Lol'), 'bigsmile' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/bigsmile.png', 'title' => 'Big Smile'), 'wink' => array('variants' => array(';)', ';-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/wink.png', 'title' => 'Wink'), 'tongue' => array('variants' => array(':p', ':-p'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/tongue.png', 'title' => 'Tongue'), 'stare' => array('variants' => array(':|', ':-|'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/flat.png', 'title' => 'Stare'), 'sad' => array('variants' => array(':(', ':-('), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/aw.png', 'title' => 'Sad'), 'puzzled' => array('variants' => array(':~', ':-~'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/puzzled.png', 'title' => 'Puzzled'), 'cry' => array('variants' => array(':((', ':-(('), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/sad.png', 'title' => 'Cry'), 'cool' => array('variants' => array('8)', '8-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cool.png', 'title' => 'Cool'), 'steve' => array('variants' => array('8)', '8-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/steve.png', 'title' => 'Steve'), 'crazy' => array('variants' => array('J)', 'J-)'), 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/crazy.png', 'title' => 'Crazy'), 'glasses' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/glasses.png', 'title' => 'Glasses'), 'party' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/party.png', 'title' => 'Party'), 'love' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/love.png', 'title' => 'Love'), 'cooking_6' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_6.gif', 'title' => 'Cooking 6'), 'cooking_9' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_9.gif', 'title' => 'Cooking 9'), 'cooking_7' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_7.gif', 'title' => 'Cooking 7'), 'cooking_2' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_2.gif', 'title' => 'Cooking 2'), 'cooking_1' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_1.gif', 'title' => 'Cooking 1'), 'cooking_10' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_10.gif', 'title' => 'Cooking 10'), 'cooking_4' => array('variants' => null, 'image' => '/bundles/tmrcfront/js/tinymce-plugins/tmrc_emoticons/img/cooking_4.gif', 'title' => 'Cooking 4')), 'front_base_url' => 'cz.test.tmrc.vorwerk.com', 'thermostars_enabled' => false, 'community' => array('locale' => 'cs_CZ', 'language' => 'cs', 'country' => 'CZ', 'timezone' => 'Europe/Prague', 'date_format' => array('default' => array('front_end' => 'dd.mm.yy', 'back_end' => 'd.m.Y', 'short' => 'dd.MM.yyyy', 'long' => 'd. MMMM yyyy - HH:mm'))), 'tinymce' => array('language' => 'cz', 'custom' => false), 'facebook' => array('app_id' => 'change_me', 'permissions' => array('email', 'user_birthday', 'user_location')), 'piwik' => array('site_id' => -9, 'domain' => 'my.thermomixrecipes.com', 'server_domain' => 'piwik.thermomix.com', 'clickheat' => array('enabled' => false, 'group_routes' => array('tmrc_homepage' => 'homepage', 'tmrc_search_recipe_search' => 'recipesearch', 'tmrc_forum_overview_page' => 'forum', 'tmrc_recipe_view_short' => 'recipes', 'tmrc_recipe_view' => 'recipes', 'tmrc_search_categorylist_index' => 'category_overview', 'tmrc_search_recipe_categoryDisplay' => 'category_recipe_list'))), 'cookie_consent' => array('enabled' => false, 'colors' => array('background' => '#113c2b', 'text' => '#ffffff', 'button_background' => '#009c3b', 'button_text' => '#ffffff'), 'position' => 'bottom', 'static' => 'false', 'theme' => 'block'), 'recipe_url_slug' => 'recepty', 'max_teaser_length' => 150, 'images' => array('mood_search' => 'https://tmrcv3-staging-en.s3.amazonaws.com/assets/bundles/tmrcfront/newlayout/images/mood_search.jpg'), 'google_maps_api_key' => 'change_me', 'drupal_base_url' => 'https://cz.test.tmrc.vorwerk.com', 'content_api_base_url' => 'https://cz.test.tmrc.vorwerk.com/content_api/get', 'send_message_base_url' => '/messages/new', 'friend_request_base_url' => '/flag/confirm/flag/friend', 'unfriend_request_base_url' => '/flag/confirm/unfriend/friend', 'hide_suggestion_base_url' => '/my/friends/hidesuggestion', 'error_logging_base_url' => 'https://cz.test.tmrc.vorwerk.com/login/api.php', 'date_format' => array('default' => array('front_end' => 'dd.mm.yy', 'back_end' => 'd.m.Y', 'short' => 'dd.MM.yyyy', 'long' => 'd. MMMM yyyy - HH:mm')), 'datetime_format' => array('default' => array('front_end' => 'dd.mm.yy', 'back_end' => 'd.m.Y', 'short' => 'dd.MM.yyyy', 'long' => 'd. MMMM yyyy - HH:mm')), 'number_format' => array('default' => array('thousands_sep' => ' ', 'dec_point' => ',')), 'daily_recipe_title_max_length' => 100, 'accessories_buy_url' => 'http://shop.vorwerk.cz/thermomix-cz/prislusenstvi.html', 'use_shariff' => false, 'recipe_image_required' => true, 'recipe_required_submit_to_review' => false, 'enable_fb_login' => false, 'base_domain' => 'cz.test.tmrc.vorwerk.com', 'google_tag_manager' => false, 'google_tag_manager_auth' => false, 'google_tag_manager_ua_id' => false, 'google_analytics_optimize_id' => 'GTM-TBRJ9F7', 'de_aktion_apfel' => false, 'recipe_note_enabled' => true, 'require_voting_with_comment' => false, 'user_follow_enabled' => true, 'user_gdpr_export_enabled' => true, 'user_gdpr_delete_enabled' => true, 'friend_feature_enabled' => true, 'pinterest_frame_for_recipe_sharing' => true, 'hide_newsletter_banner' => false, 'hide_dynamic_banner' => false, 'user_star_enabled' => false, 'recipe_allow_embed_video' => true, 'cookidoo_widget' => array('enabled' => true, 'script_url' => '//assets.cookidoo.io/a2c/a2c.js', 'partner_id' => 'rezeptwelt-b20807', 'lang' => 'cs', 'market' => 'cookidoo.cz'), 'onetrust_cookie_consent' => array('enabled' => false, 'domain_script' => 'c3f21cac-77e8-48ad-8ed4-35b33401d887'), 'survey_popup' => array('enabled' => false), 'popup_inform_terms_update' => array('enabled' => false), 'popup_warning_unsafe_link' => array('enabled' => true), 'popup_warning_spam_messages' => array('enabled' => false), 'switch_ui' => array('enabled' => false), 'picture_consent' => array('enabled' => false), 'anniversary' => array('enabled' => false), 'meta_pixel' => array('enabled' => false, 'id' => 391086323051416)), array())
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp'))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp'), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp'))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('@TmrcEsi/recipe/view_meta.html.twig', array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@TmrcEsi/recipe/view_meta.html.twig', array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@TmrcEsi/recipe/view_meta.html.twig', array('recipeModel' => object(ElasticRecipe), 'uuid' => 'cg5aetwz-11f38-305782-cfcd2-e930pmlp'))
     (Tmrc/EsiBundle/Controller/RecipeController.php:139)
  at Tmrc\EsiBundle\Controller\RecipeController->viewMetaAction('cg5aetwz-11f38-305782-cfcd2-e930pmlp')
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/var/www/TMRC/TMRC-Recipes/vendor/autoload_runtime.php')
     (public/index.php:5)                

thumbnail image 1
thumbnail image 1
Doba přípravy
0min
Celkový čas
0min
porce/procí
4 porce/porcí
Úroveň
snadný

Ingredience & Porce

  • 160 gwhisky 120 g grapefruitového džusu 6 kusů ledových kostek 50 g medu

Příslušenství, které potřebujete

  • Stěrka
    Stěrka koupit nyní
  • Kompletní mixovací nádoba pro TM6
    Kompletní mixovací nádoba pro TM6 koupit nyní

Sdílet svoji aktivitu

Dnes vařím toto

Příprava


    1. Do mixovací nádoby vložte všechny suroviny  a med jako  úplně poslední a míchejte 10 sek./rychlost 7. 


     

Model Thermomixu ®

  • Appliance TM 31 image
    Recept je vytvořen pro
    TM 31

Tento recept byl poskytnut zákazníkem Thermomixu ®, a tudíž není testován společností Vorwerk Thermomix ®. Společnost Vorwerk Thermomix ® proto negarantuje úspěšný výsledek tohoto receptu. Při vaření uživatelských receptů vždy dodržujte bezpečnostní pokyny uvedené v manuálu.

Kategorie receptů:

Vytisknout

Medový večer

Vytisknout:

Komentáře