src/EventSubscriber/CartSubscriber.php line 28

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber;
  3. use App\Service\Cart\CartService;
  4. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  5. use Symfony\Component\HttpKernel\Event\ControllerEvent;
  6. use Twig\Environment;
  7. class CartSubscriber implements EventSubscriberInterface
  8. {
  9.     private $cartService;
  10.     private $twig;
  11.     public function __construct(CartService $cartServiceEnvironment $twig)
  12.     {
  13.         $this->cartService $cartService;
  14.         $this->twig $twig;
  15.     }
  16.     public static function getSubscribedEvents(): array
  17.     {
  18.         return [
  19.             'kernel.controller' => 'onKernelController',
  20.         ];
  21.     }
  22.     public function onKernelController(ControllerEvent $event)
  23.     {
  24.         // Injecter les variables globales dans tous les templates
  25.         $items $this->cartService->getFullCart();
  26.         $total $this->cartService->getTotal();
  27.         // Utiliser Twig pour les rendre disponibles globalement
  28.         $this->twig->addGlobal('items'$items);
  29.         $this->twig->addGlobal('total'$total);
  30.     }
  31. }