GroupePrestaController.php 1.45 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php

namespace App\Controller;

use App\Entity\Groupeprestataire;
use App\Entity\Prestataire;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;

class GroupePrestaController extends AbstractController
{
    private $em;

    public function __construct(EntityManagerInterface $em)
    {
        $this->em = $em;
    }

    /**
Julien Jorry committed
22
     * @Route("/groupe/prestataires/{type}/liste", name="groupepresta_liste")
23
     */
Julien Jorry committed
24
    public function listeGroupePrestaAction($type, Request $request)
25
    {
Julien Jorry committed
26
        $groupe = $this->em->getRepository(Groupeprestataire::class)->findBy(array('type' => $type, 'enabled' => true));
27 28 29 30 31 32 33 34 35 36
        if (empty($groupes)) {
            return $this->redirectToRoute('index');
        }

        return $this->render('groupepresta/liste.html.twig', array(
            'groupes' => $groupes
        ));
    }

    /**
Julien Jorry committed
37
     * @Route("/groupe/prestataires/{type}/carte", name="groupepresta_carte")
38
     */
Julien Jorry committed
39
    public function carteGroupePrestaAction($type, Request $request)
40
    {
Julien Jorry committed
41
        $groupes = $this->em->getRepository(Groupeprestataire::class)->findBy(array('type' => $type, 'enabled' => true));
42 43 44 45 46 47 48 49 50
        if (empty($groupes)) {
            return $this->redirectToRoute('index');
        }

        return $this->render('groupepresta/carte.html.twig', array(
            'groupes' => $groupes
        ));
    }
}