src/Controller/MasterController.php line 22

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Logs\FileLogger;
  4. use Symfony\Component\HttpFoundation\RedirectResponse;
  5. use Symfony\Component\Mime\Part\DataPart;
  6. use Symfony\Component\Mime\Part\Multipart\FormDataPart;
  7. use Symfony\Component\Routing\Annotation\Route;
  8. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  9. use Symfony\Component\HttpFoundation\JsonResponse;
  10. use Symfony\Component\HttpFoundation\Request;
  11. use Symfony\Component\HttpFoundation\Response;
  12. use Symfony\Contracts\HttpClient\HttpClientInterface;
  13. class MasterController extends AbstractController {
  14.     /**
  15.      * @Route("/")
  16.      */
  17.     public function index() {
  18.         $jsVariables = [];
  19.         return $this->render("web/home.html", [
  20.             'title' => "Bensari Ebenistes",
  21.             'time' => time(),
  22.             'jsVariables' => $jsVariables
  23.         ]);
  24.     }
  25.     /**
  26.      * @Route("/podstrona")
  27.      */
  28.     public function podstrona() {
  29.         $jsVariables = [];
  30.         return $this->render("web/subpage.html", [
  31.             'title' => "Bensari Ebenistes | Podstrona",
  32.             'time' => time(),
  33.             'jsVariables' => $jsVariables
  34.         ]);
  35.     }
  36. }