src/Controller/DefaultController.php line 21

Open in your IDE?
  1. <?php
  2. // src/Controller/DefaultController.php
  3. namespace App\Controller;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\Routing\Annotation\Route;
  7. use Doctrine\Persistence\ManagerRegistry;
  8. use Doctrine\ORM\EntityManagerInterface;
  9. use Symfony\Component\Validator\Validator\ValidatorInterface;
  10. class DefaultController extends BaseController
  11. {
  12.     const ACCES_GLOBAL 'ROLE_USER';
  13.    /**
  14.     * @Route("/", name="home")
  15.     */
  16.     public function home(Request $request): Response
  17.     {
  18.         return $this->render('default/home.html.twig'$this->params);
  19.     }
  20.     /**
  21.      * @Route("/ping", name="ping")
  22.      */
  23.     public function ping(Request $request): Response
  24.     {
  25.         return new Response(
  26.             '<html><body>Pong</body></html>'
  27.         );
  28.     }
  29.     /**
  30.      * @Route("/phpinfo", name="phpinfo")
  31.      */
  32.     public function info(Request $request): Response
  33.     {
  34.         $this->params['page']['title'] = 'PHP INFO';
  35.         $this->params['page']['breadcrumbs'][] = [
  36.             'route' => 'phpinfo',
  37.             'label' => 'PHP Info',
  38.         ];
  39.         ob_start();
  40.         phpinfo();
  41.         $this->params['page']['contents'] = ob_get_contents();
  42.         ob_end_clean();
  43.         return $this->render('default/common.html.twig'$this->params);
  44.     }
  45.     /**
  46.      * @Route("/contact", name="contact")
  47.      */
  48.     public function contact(Request $requestValidatorInterface $validator): Response
  49.     {
  50.         $this->params['page']['head']['title'] = 'Contact';
  51.         $this->params['page']['title'] = 'Contact';
  52.         $this->params['page']['breadcrumbs'][] = [
  53.             'route' => 'contact',
  54.             'label' => 'Contact',
  55.         ];
  56.         
  57.         $contact = new \App\Entity\Contact();
  58.         
  59.         $form $this->createForm('App\\Form\\ContactType'$contact);
  60.         $form->handleRequest($request);
  61.         if ($form->isSubmitted() && $form->isValid()) {
  62.             //var_dump($article);
  63.             $errors $validator->validate($contact);
  64.             //var_dump($errors);
  65.             if (count($errors) > 0) {
  66.                 return new Response((string) $errors400);
  67.             }
  68.             //var_dump($form); var_dump($contact);
  69.             
  70.             mail('mathieu@iprospective.fr''Nouveau message Alors''Objet: '.$contact->getSubject()."\r\n".'Message: '.$contact->getMessage());
  71.         }
  72.         $this->params['form'] = $form->createView();
  73.     
  74.         return $this->render('default/contact.html.twig'$this->params);
  75.     }
  76. }