GroupePrestaController.php 1.76 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?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;

12 13 14 15 16
/**
 * LOCO : Outil de gestion de Monnaie Locale Complémentaire
 *
 * @author Julien Jorry <julien.jorry@gmail.com>
 */
17 18 19 20 21 22 23 24 25
class GroupePrestaController extends AbstractController
{
    private $em;

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

26 27 28 29 30 31 32 33 34 35
    /**
     * @Route("/prestataires/groupe/{type}/{slug}", name="show_groupeprestataire")
     */
    public function showGroupeAction(Groupeprestataire $groupe)
    {
        return $this->render('groupepresta/show.html.twig', array(
            'groupe' => $groupe
        ));
    }

36
    /**
Julien Jorry committed
37
     * @Route("/groupe/prestataires/{type}/liste", name="groupepresta_liste")
38
     */
Julien Jorry committed
39
    public function listeGroupePrestaAction($type, Request $request)
40
    {
41
        $groupe = $this->em->getRepository(Groupeprestataire::class)->findBy(array('type' => $type, 'enabled' => true), array('name'=> 'ASC'));
42 43

        return $this->render('groupepresta/liste.html.twig', array(
44 45
            'groupes' => $groupes,
            'groupetype' => $type
46 47 48 49
        ));
    }

    /**
Julien Jorry committed
50
     * @Route("/groupe/prestataires/{type}/carte", name="groupepresta_carte")
51
     */
Julien Jorry committed
52
    public function carteGroupePrestaAction($type, Request $request)
53
    {
Julien Jorry committed
54
        $groupes = $this->em->getRepository(Groupeprestataire::class)->findBy(array('type' => $type, 'enabled' => true));
55 56

        return $this->render('groupepresta/carte.html.twig', array(
57 58
            'groupes' => $groupes,
            'groupetype' => $type
59 60 61
        ));
    }
}