src/Controller/ConfiguratorController.php line 22

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\ActivityArea;
  4. use App\Entity\Configuration;
  5. use App\Entity\ConfigurationType;
  6. use App\Entity\ProductOption;
  7. use App\Manager\ConfigurationManager;
  8. use App\Service\GoogleApiService;
  9. use App\Service\GrcService;
  10. use Doctrine\ORM\EntityManagerInterface;
  11. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  12. use Symfony\Component\HttpFoundation\RedirectResponse;
  13. use Symfony\Component\HttpFoundation\Response;
  14. use Symfony\Component\Routing\Annotation\Route;
  15. #[Route('/'name'app_configurator_')]
  16. class ConfiguratorController extends AbstractController
  17. {
  18.     #[Route('/'name'init')]
  19.     public function init(ConfigurationManager $manager): RedirectResponse
  20.     {
  21.         return $this->redirectToRoute('app_configurator_config', [
  22.             'id' => $manager->createConfiguration(ConfigurationType::MOBILIER)->getId()
  23.         ]);
  24.     }
  25.     #[Route('/config/{id}'name'config')]
  26.     public function config(EntityManagerInterface $managerConfiguration $configuration): Response
  27.     {
  28.         $slices $manager->getRepository(ProductOption::class)->getMinAndMaxValueByName();
  29.         $activity_areas $manager->getRepository(ActivityArea::class)->findBy([], ['name' => 'asc']);
  30.         $types $manager->getRepository(ConfigurationType::class)->findBy([], ['name' => 'asc']);
  31.         return $this->render('configurator/config.html.twig'compact(
  32.             'configuration',
  33.             'slices',
  34.             'activity_areas',
  35.             'types'
  36.         ));
  37.     }
  38. }