<?php
/**
* Created by PhpStorm.
* User: Slim Sayari
* Date: 10/07/2019
* Time: 13:43
*/
namespace App\Controller\Front;
use App\Entity\Attribut;
use App\Entity\Product;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Twig\Environment;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Request;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
use App\Services\Liseuse;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Spatie\PdfToImage\Pdf;
use Imagick;
class ProductController extends AbstractController
{
private $em;
private $liseuse_service;
private $session;
private $params;
public function __construct(SessionInterface $session ,Liseuse $liseuse_service , EntityManagerInterface $em, ParameterBagInterface $params)
{
$this->em = $em;
$this->liseuse_service = $liseuse_service;
$this->session = $session;
$this->params = $params;
}
/**
* @Route("/product-block", name="product_block")
*/
public function productBlock(Request $request,$showWidthoutPapier=false) : Response
{
$products = $this->em->getRepository(Product::class)->findBy(array(),array('sort'=>'asc'));
$attributes = $this->em->getRepository(Attribut::class)->findAll();
$response = $this->render('front/accueil/block_product.html.twig',[
'products'=>$products,
'attributes'=>$attributes,
'showWidthoutPapier'=>$showWidthoutPapier ? $showWidthoutPapier :false
]);
return $response;
}
}