src/Controller/HomeController.php line 36

  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\AboutUs;
  4. use App\Repository\CategoryRepository;
  5. use App\Repository\ProjectRepository;
  6. use Doctrine\ORM\EntityManagerInterface;
  7. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  8. use Symfony\Component\HttpFoundation\Response;
  9. use Symfony\Component\Routing\Annotation\Route;
  10. class HomeController extends AbstractController
  11. {
  12.     public function __construct(
  13.         private readonly EntityManagerInterface $em,
  14.     ) {}
  15.     /**
  16.      * @Route("/", name="home")
  17.      * @throws \Psr\Cache\InvalidArgumentException
  18.      */
  19.     public function indexProjectRepository $repoCategoryRepository $repoCat ): Response
  20.     {
  21.         $projects $repo->findBy(
  22.                 [],
  23.                 ['displayOrder' => 'ASC']
  24.             );
  25.         return $this->render('home/index.html.twig', [
  26.             'projects' => $projects,
  27.             'categories' => $repoCat->findAll()
  28.         ]);
  29.     }
  30.     #[Route('/confidentiality'name:'app_privacy_confidentiality')]
  31.     public function privacyConfidentiality(): Response
  32.     {
  33.         $text $this->em->getRepository(AboutUs::class);
  34.         $confidential $text->findOneBy(['reference_page' => 'confidential']);
  35.         return $this->render('home/privacyConfidentiality.html.twig',[
  36.             'title' => 'Politique de confidentialité',
  37.             'confidential' => $confidential
  38.         ]);
  39.     }
  40. }