src/Controller/CGVController.php line 91

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class CGVController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/charte", name="app_charte")
  10.      */
  11.     public function charte(): Response
  12.     {
  13.         return $this->render('cgv/charte.html.twig');
  14.     }
  15.     /**
  16.      * @Route("/politique-de-cookies", name="app_cookies")
  17.      */
  18.     public function cookies(): Response
  19.     {
  20.         return $this->render('cgv/politique-de-cookies.html.twig');
  21.     }
  22.     /**
  23.      * @Route("/politique-confidentialite", name="app_confidentialite")
  24.      */
  25.     public function confidentialite(): Response
  26.     {
  27.         return $this->render('cgv/confidentialite.html.twig');
  28.     }
  29.     /**
  30.      * @Route("/mentions-legales", name="app_mentions")
  31.      */
  32.     public function mentions(): Response
  33.     {
  34.         return $this->render('cgv/mentions.html.twig');
  35.     }
  36.    /**
  37.      * @Route("/voyance", name="app_voyance")
  38.      */
  39.     public function voyance(): Response
  40.     {
  41.         return $this->render('cgv/voyance.html.twig');
  42.     }
  43.     /**
  44.      * @Route("/tarot-gratuit", name="app_tarotGratuit")
  45.      */
  46.     public function tarot(): Response
  47.     {
  48.         return $this->render('cgv/tarot-gratuit.html.twig');
  49.     }
  50.        /**
  51.      * @Route("/cartomancie", name="app_cartomancie")
  52.      */
  53.     public function cartomancie(): Response
  54.     {
  55.         return $this->render('cgv/cartomancie.html.twig');
  56.     }
  57.           /**
  58.      * @Route("/medium", name="app_medium")
  59.      */
  60.     public function medium(): Response
  61.     {
  62.         return $this->render('cgv/medium.html.twig');
  63.     }
  64.     /**
  65.      * @Route("/actualites", name="app_actualites")
  66.      */
  67.     public function actualites(): Response
  68.     {
  69.         return $this->render('cgv/actualites.html.twig');
  70.     }
  71.     /**
  72.      * @Route("/conditions-generales-vente", name="app_CGV")
  73.      */
  74.     public function CGV(): Response
  75.     {
  76.         return $this->render('cgv/CGV.html.twig');
  77.     }
  78.     /**
  79.      * @Route("/foire-aux-questions", name="app_FAQ")
  80.      */
  81.     public function FAQ(): Response
  82.     {
  83.         return $this->render('cgv/FAQ.html.twig');
  84.     }
  85.     /**
  86.      * @Route("/code-deontologie", name="app_deontologie")
  87.      */
  88.     public function deontologie(): Response
  89.     {
  90.         return $this->render('cgv/code_deontologie.html.twig');
  91.     }
  92.     /**
  93.      * @Route("/supprimer-son-compte", name="app_delete")
  94.      */
  95.     public function delete(): Response
  96.     {
  97.         return $this->render('cgv/delete.html.twig');
  98.     }
  99.     /**
  100.      * @Route("/qui-somme-nous", name="app_infos")
  101.      */
  102.     public function infos(): Response
  103.     {
  104.         return $this->render('cgv/infos.html.twig', [
  105.             'controller_name' => 'InfosController',
  106.         ]);
  107.     }
  108. }