1 | <?php |
||
8 | class PerformanceEventCRUDController extends CRUDController |
||
9 | { |
||
10 | /** |
||
11 | * @return Response |
||
12 | */ |
||
13 | public function getVenueAction() |
||
14 | { |
||
15 | $id = $this->get('request')->query->get('venue_id'); |
||
16 | $venue = $this->getDoctrine()->getRepository('AppBundle:Venue')->find($id); |
||
17 | |||
18 | return $this->render('AppBundle:PerformanceEventCRUD:venueHall.html.twig', [ |
||
19 | 'venue' => $venue, |
||
20 | ]); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return Response |
||
25 | */ |
||
26 | public function deletePriceCategoriesAction() |
||
38 | } |
||
39 |