src/Controller/Front/ProductController.php line 47

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: Slim Sayari
  5.  * Date: 10/07/2019
  6.  * Time: 13:43
  7.  */
  8. namespace App\Controller\Front;
  9. use App\Entity\Attribut;
  10. use App\Entity\Product;
  11. use Symfony\Component\HttpFoundation\RedirectResponse;
  12. use Symfony\Component\Routing\Annotation\Route;
  13. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  14. use Twig\Environment;
  15. use Symfony\Component\HttpFoundation\Response;
  16. use Symfony\Component\HttpFoundation\Request;
  17. use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;
  18. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  19. use Doctrine\ORM\EntityManagerInterface;
  20. use Symfony\Contracts\Translation\TranslatorInterface;
  21. use App\Services\Liseuse;
  22. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  23. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
  24. use Spatie\PdfToImage\Pdf;
  25. use Imagick;
  26. class ProductController extends AbstractController
  27. {
  28.     private $em;
  29.     private $liseuse_service;
  30.     private $session;
  31.     private $params;
  32.     public function __construct(SessionInterface $session ,Liseuse $liseuse_service EntityManagerInterface $emParameterBagInterface $params)
  33.     {
  34.         $this->em $em;
  35.         $this->liseuse_service $liseuse_service;
  36.         $this->session $session;
  37.         $this->params $params;
  38.     }
  39.     /**
  40.      * @Route("/product-block", name="product_block")
  41.      */
  42.     public function productBlock(Request $request,$showWidthoutPapier=false) : Response
  43.     {
  44.         $products $this->em->getRepository(Product::class)->findBy(array(),array('sort'=>'asc'));
  45.         $attributes $this->em->getRepository(Attribut::class)->findAll();
  46.         $response $this->render('front/accueil/block_product.html.twig',[
  47.             'products'=>$products,
  48.             'attributes'=>$attributes,
  49.             'showWidthoutPapier'=>$showWidthoutPapier $showWidthoutPapier :false
  50.         ]);
  51.         return $response;
  52.     }
  53. }