getDoctrine()->getManager(); $entities = $em->getRepository('ChillEventBundle:Role')->findAll(); return $this->render('ChillEventBundle:Role:index.html.twig', array( 'entities' => $entities, )); } /** * Creates a new Role entity. * */ public function createAction(Request $request) { $entity = new Role(); $form = $this->createCreateForm($entity); $form->handleRequest($request); if ($form->isValid()) { $em = $this->getDoctrine()->getManager(); $em->persist($entity); $em->flush(); return $this->redirect($this->generateUrl('chill_event_admin_role', array('id' => $entity->getId()))); } return $this->render('ChillEventBundle:Role:new.html.twig', array( 'entity' => $entity, 'form' => $form->createView(), )); } /** * Creates a form to create a Role entity. * * @param Role $entity The entity * * @return \Symfony\Component\Form\Form The form */ private function createCreateForm(Role $entity) { $form = $this->createForm(RoleType::class, $entity, array( 'action' => $this->generateUrl('chill_event_admin_role_create'), 'method' => 'POST', )); $form->add('submit', SubmitType::class, array('label' => 'Create')); return $form; } /** * Displays a form to create a new Role entity. * */ public function newAction() { $entity = new Role(); $form = $this->createCreateForm($entity); return $this->render('ChillEventBundle:Role:new.html.twig', array( 'entity' => $entity, 'form' => $form->createView(), )); } /** * Finds and displays a Role entity. * */ public function showAction($id) { $em = $this->getDoctrine()->getManager(); $entity = $em->getRepository('ChillEventBundle:Role')->find($id); if (!$entity) { throw $this->createNotFoundException('Unable to find Role entity.'); } $deleteForm = $this->createDeleteForm($id); return $this->render('ChillEventBundle:Role:show.html.twig', array( 'entity' => $entity, 'delete_form' => $deleteForm->createView(), )); } /** * Displays a form to edit an existing Role entity. * */ public function editAction($id) { $em = $this->getDoctrine()->getManager(); $entity = $em->getRepository('ChillEventBundle:Role')->find($id); if (!$entity) { throw $this->createNotFoundException('Unable to find Role entity.'); } $editForm = $this->createEditForm($entity); $deleteForm = $this->createDeleteForm($id); return $this->render('ChillEventBundle:Role:edit.html.twig', array( 'entity' => $entity, 'edit_form' => $editForm->createView(), 'delete_form' => $deleteForm->createView(), )); } /** * Creates a form to edit a Role entity. * * @param Role $entity The entity * * @return \Symfony\Component\Form\Form The form */ private function createEditForm(Role $entity) { $form = $this->createForm(RoleType::class, $entity, array( 'action' => $this->generateUrl('chill_event_admin_role_update', array('id' => $entity->getId())), 'method' => 'PUT', )); $form->add('submit', SubmitType::class, array('label' => 'Update')); return $form; } /** * Edits an existing Role entity. * */ public function updateAction(Request $request, $id) { $em = $this->getDoctrine()->getManager(); $entity = $em->getRepository('ChillEventBundle:Role')->find($id); if (!$entity) { throw $this->createNotFoundException('Unable to find Role entity.'); } $deleteForm = $this->createDeleteForm($id); $editForm = $this->createEditForm($entity); $editForm->handleRequest($request); if ($editForm->isValid()) { $em->flush(); return $this->redirect($this->generateUrl('chill_event_admin_role', array('id' => $id))); } return $this->render('ChillEventBundle:Role:edit.html.twig', array( 'entity' => $entity, 'edit_form' => $editForm->createView(), 'delete_form' => $deleteForm->createView(), )); } /** * Deletes a Role 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:Role')->find($id); if (!$entity) { throw $this->createNotFoundException('Unable to find Role entity.'); } $em->remove($entity); $em->flush(); } return $this->redirect($this->generateUrl('chill_event_admin_role')); } /** * Creates a form to delete a Role 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('chill_event_admin_role_delete', array('id' => $id))) ->setMethod('DELETE') ->add('submit', SubmitType::class, array('label' => 'Delete')) ->getForm() ; } }