<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class InstructionController extends AbstractController
{
/**
* @Route ("/instrukce/staz",name="instruction_term")
*/
public function instructionTerm(): Response
{
return $this->render('instructions/term_instructions.html.twig');
}
/**
* @Route ("/instrukce/staz/cestovniPrikaz",name="instruction_travel_order_study_stay")
*/
public function instructionTravelOrderStudyStay(): Response
{
return $this->render('instructions/travel_order_study_stay_instructions.html.twig');
}
/**
* @Route ("/instrukce/nastaveni/tarifyPristiRok",name="instruction_tariff_next_year")
*/
public function instructionTariffnextYear(): Response
{
return $this->render('instructions/set_tariff_next_year.html.twig');
}
/**
* @Route ("/instrukce/navody",name="manual_page_admin")
*/
public function manualPageAdmin(): Response
{
return $this->render('instructions/manual_page_admin.html.twig');
}
/**
* @Route ("/instrukce/importZahranicnichTarifu",name="instructionImportForeignTariff")
*/
public function instructionImportForeignTariff(): Response
{
return $this->render('instructions/import_foreign_tariff.html.twig');
}
/**
* @Route ("/gdpr-souhlas",name="gdrp_agreement")
*/
public function gdprAgreement(): Response
{
return $this->render('instructions/gdpr_agreement.html.twig');
}
}