src/Controller/InstructionController.php line 61

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 InstructionController extends AbstractController
  7. {
  8.     /**
  9.      * @Route ("/instrukce/staz",name="instruction_term")
  10.      */
  11.     public function instructionTerm(): Response
  12.     {
  13.         return $this->render('instructions/term_instructions.html.twig');
  14.     }
  15.     
  16.     /**
  17.      * @Route ("/instrukce/staz/cestovniPrikaz",name="instruction_travel_order_study_stay")
  18.      */
  19.     public function instructionTravelOrderStudyStay(): Response
  20.     {
  21.         return $this->render('instructions/travel_order_study_stay_instructions.html.twig');
  22.     }
  23.     /**
  24.      * @Route ("/instrukce/nastaveni/tarifyPristiRok",name="instruction_tariff_next_year")
  25.      */
  26.     public function instructionTariffnextYear(): Response
  27.     {
  28.         return $this->render('instructions/set_tariff_next_year.html.twig');
  29.     }
  30.     /**
  31.      * @Route ("/instrukce/navody",name="manual_page_admin")
  32.      */
  33.     public function manualPageAdmin(): Response
  34.     {
  35.         return $this->render('instructions/manual_page_admin.html.twig');
  36.     }
  37.     /**
  38.      * @Route ("/instrukce/importZahranicnichTarifu",name="instructionImportForeignTariff")
  39.      */
  40.     public function instructionImportForeignTariff(): Response
  41.     {
  42.         return $this->render('instructions/import_foreign_tariff.html.twig');
  43.     }
  44.     
  45.     /**
  46.      * @Route ("/gdpr-souhlas",name="gdrp_agreement")
  47.      */
  48.     public function gdprAgreement(): Response
  49.     {
  50.         return $this->render('instructions/gdpr_agreement.html.twig');
  51.     }
  52. }