getDoctrine()->getManager(); $entities = $em->getRepository('ChillEventBundle:Event')->findAll(); return $this->render('ChillEventBundle:Event:index.html.twig', array( 'entities' => $entities, )); } /** * Creates a new Event entity. * */ public function createAction(Request $request) { $entity = new Event(); $form = $this->createCreateForm($entity); $form->handleRequest($request); if ($form->isValid()) { $em = $this->getDoctrine()->getManager(); $em->persist($entity); $em->flush(); return $this->redirect($this->generateUrl('event_show', array('event_id' => $entity->getId()))); } return $this->render('ChillEventBundle:Event:new.html.twig', array( 'entity' => $entity, 'form' => $form->createView(), )); } /** * Creates a form to create a Event entity. * * @param Event $entity The entity * * @return \Symfony\Component\Form\Form The form */ private function createCreateForm(Event $entity) { $form = $this->createForm(EventType::class, $entity, array( 'action' => $this->generateUrl('event_create'), 'method' => 'POST' )); $form->add('submit', 'submit', array('label' => 'Create')); return $form; } /** * Displays a form to create a new Event entity. * */ public function newAction() { $entity = new Event(); $form = $this->createCreateForm($entity); return $this->render('ChillEventBundle:Event:new.html.twig', array( 'entity' => $entity, 'form' => $form->createView(), )); } /** * Finds and displays a Event entity. * */ public function showAction($event_id) { $em = $this->getDoctrine()->getManager(); $entity = $em->getRepository('ChillEventBundle:Event')->find($event_id); if (!$entity) { throw $this->createNotFoundException('Unable to find Event entity.'); } $this->denyAccessUnlessGranted('CHILL_EVENT_SEE_DETAILS', $entity, "You are not allowed to see details on this event"); $addParticipationByPersonForm = $this->createAddParticipationByPersonForm($entity); return $this->render('ChillEventBundle:Event:show.html.twig', array( 'event' => $entity, 'form_add_participation_by_person' => $addParticipationByPersonForm->createView() )); } /** * create a form to add a participation with a person * * @return \Symfony\Component\Form\FormInterface */ protected function createAddParticipationByPersonForm(Event $event) { /* @var $builder \Symfony\Component\Form\FormBuilderInterface */ $builder = $this ->get('form.factory') ->createNamedBuilder( null, FormType::class, null, array( 'method' => 'GET', 'action' => $this->generateUrl('chill_event_participation_new'), 'csrf_protection' => false )) ; $builder->add('person_id', PickPersonType::class, array( 'role' => new Role('CHILL_EVENT_CREATE'), 'centers' => $event->getCenter() )); $builder->add('event_id', HiddenType::class, array( 'data' => $event->getId() )); $builder->add('submit', SubmitType::class, array( 'label' => 'Add a participation' )); return $builder->getForm(); } /** * Displays a form to edit an existing Event entity. * */ public function editAction($id) { $em = $this->getDoctrine()->getManager(); $entity = $em->getRepository('ChillEventBundle:Event')->find($id); if (!$entity) { throw $this->createNotFoundException('Unable to find Event entity.'); } $editForm = $this->createEditForm($entity); $deleteForm = $this->createDeleteForm($id); return $this->render('ChillEventBundle:Event:edit.html.twig', array( 'entity' => $entity, 'edit_form' => $editForm->createView(), 'delete_form' => $deleteForm->createView(), )); } /** * Creates a form to edit a Event entity. * * @param Event $entity The entity * * @return \Symfony\Component\Form\Form The form */ private function createEditForm(Event $entity) { $form = $this->createForm(new EventType(), $entity, array( 'action' => $this->generateUrl('event_update', array('id' => $entity->getId())), 'method' => 'PUT', )); $form->add('submit', 'submit', array('label' => 'Update')); return $form; } /** * Edits an existing Event entity. * */ public function updateAction(Request $request, $id) { $em = $this->getDoctrine()->getManager(); $entity = $em->getRepository('ChillEventBundle:Event')->find($id); if (!$entity) { throw $this->createNotFoundException('Unable to find Event entity.'); } $deleteForm = $this->createDeleteForm($id); $editForm = $this->createEditForm($entity); $editForm->handleRequest($request); if ($editForm->isValid()) { $em->flush(); return $this->redirect($this->generateUrl('event_edit', array('id' => $id))); } return $this->render('ChillEventBundle:Event:edit.html.twig', array( 'entity' => $entity, 'edit_form' => $editForm->createView(), 'delete_form' => $deleteForm->createView(), )); } /** * Deletes a Event entity. * */ public function deleteAction(Request $request, $id) { $form = $this->createDeleteForm($id); $form->handleRequest($request); if ($form->isValid()) { $em = $this->getDoctrine()->getManager(); $entity = $em->getRepository('ChillEventBundle:Event')->find($id); if (!$entity) { throw $this->createNotFoundException('Unable to find Event entity.'); } $em->remove($entity); $em->flush(); } return $this->redirect($this->generateUrl('event')); } /** * Creates a form to delete a Event entity by id. * * @param mixed $id The entity id * * @return \Symfony\Component\Form\Form The form */ private function createDeleteForm($id) { return $this->createFormBuilder() ->setAction($this->generateUrl('event_delete', array('id' => $id))) ->setMethod('DELETE') ->add('submit', 'submit', array('label' => 'Delete')) ->getForm() ; } }