/
var
/
www
/
html
/
amply
/
vendor
/
symfony
/
maker-bundle
/
src
/
Resources
/
skeleton
/
crud
/
controller
/
Upload File
HOME
<?= "<?php\n" ?> namespace <?= $namespace ?>; use <?= $entity_full_class_name ?>; use <?= $form_full_class_name ?>; <?php if (isset($repository_full_class_name)): ?> use <?= $repository_full_class_name ?>; <?php endif ?> use Symfony\Bundle\FrameworkBundle\Controller\<?= $parent_class_name ?>; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; <?php if ($use_attributes) { ?> #[Route('<?= $route_path ?>')] <?php } else { ?> /** * @Route("<?= $route_path ?>") */ <?php } ?> class <?= $class_name ?> extends <?= $parent_class_name; ?><?= "\n" ?> { <?php if ($use_attributes) { ?> #[Route('/', name: '<?= $route_name ?>_index', methods: ['GET'])] <?php } else { ?> /** * @Route("/", name="<?= $route_name ?>_index", methods={"GET"}) */ <?php } ?> <?php if (isset($repository_full_class_name)): ?> public function index(<?= $repository_class_name ?> $<?= $repository_var ?>): Response { return $this->render('<?= $templates_path ?>/index.html.twig', [ '<?= $entity_twig_var_plural ?>' => $<?= $repository_var ?>->findAll(), ]); } <?php else: ?> public function index(): Response { $<?= $entity_var_plural ?> = $this->getDoctrine() ->getRepository(<?= $entity_class_name ?>::class) ->findAll(); return $this->render('<?= $templates_path ?>/index.html.twig', [ '<?= $entity_twig_var_plural ?>' => $<?= $entity_var_plural ?>, ]); } <?php endif ?> <?php if ($use_attributes) { ?> #[Route('/new', name: '<?= $route_name ?>_new', methods: ['GET', 'POST'])] <?php } else { ?> /** * @Route("/new", name="<?= $route_name ?>_new", methods={"GET","POST"}) */ <?php } ?> public function new(Request $request): Response { $<?= $entity_var_singular ?> = new <?= $entity_class_name ?>(); $form = $this->createForm(<?= $form_class_name ?>::class, $<?= $entity_var_singular ?>); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { $entityManager = $this->getDoctrine()->getManager(); $entityManager->persist($<?= $entity_var_singular ?>); $entityManager->flush(); return $this->redirectToRoute('<?= $route_name ?>_index', [], Response::HTTP_SEE_OTHER); } <?php if ($use_render_form) { ?> return $this->renderForm('<?= $templates_path ?>/new.html.twig', [ '<?= $entity_twig_var_singular ?>' => $<?= $entity_var_singular ?>, 'form' => $form, ]); <?php } else { ?> return $this->render('<?= $templates_path ?>/new.html.twig', [ '<?= $entity_twig_var_singular ?>' => $<?= $entity_var_singular ?>, 'form' => $form->createView(), ]); <?php } ?> } <?php if ($use_attributes) { ?> #[Route('/{<?= $entity_identifier ?>}', name: '<?= $route_name ?>_show', methods: ['GET'])] <?php } else { ?> /** * @Route("/{<?= $entity_identifier ?>}", name="<?= $route_name ?>_show", methods={"GET"}) */ <?php } ?> public function show(<?= $entity_class_name ?> $<?= $entity_var_singular ?>): Response { return $this->render('<?= $templates_path ?>/show.html.twig', [ '<?= $entity_twig_var_singular ?>' => $<?= $entity_var_singular ?>, ]); } <?php if ($use_attributes) { ?> #[Route('/{<?= $entity_identifier ?>}/edit', name: '<?= $route_name ?>_edit', methods: ['GET', 'POST'])] <?php } else { ?> /** * @Route("/{<?= $entity_identifier ?>}/edit", name="<?= $route_name ?>_edit", methods={"GET","POST"}) */ <?php } ?> public function edit(Request $request, <?= $entity_class_name ?> $<?= $entity_var_singular ?>): Response { $form = $this->createForm(<?= $form_class_name ?>::class, $<?= $entity_var_singular ?>); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { $this->getDoctrine()->getManager()->flush(); return $this->redirectToRoute('<?= $route_name ?>_index', [], Response::HTTP_SEE_OTHER); } <?php if ($use_render_form) { ?> return $this->renderForm('<?= $templates_path ?>/edit.html.twig', [ '<?= $entity_twig_var_singular ?>' => $<?= $entity_var_singular ?>, 'form' => $form, ]); <?php } else { ?> return $this->render('<?= $templates_path ?>/edit.html.twig', [ '<?= $entity_twig_var_singular ?>' => $<?= $entity_var_singular ?>, 'form' => $form->createView(), ]); <?php } ?> } <?php if ($use_attributes) { ?> #[Route('/{<?= $entity_identifier ?>}', name: '<?= $route_name ?>_delete', methods: ['POST'])] <?php } else { ?> /** * @Route("/{<?= $entity_identifier ?>}", name="<?= $route_name ?>_delete", methods={"POST"}) */ <?php } ?> public function delete(Request $request, <?= $entity_class_name ?> $<?= $entity_var_singular ?>): Response { if ($this->isCsrfTokenValid('delete'.$<?= $entity_var_singular ?>->get<?= ucfirst($entity_identifier) ?>(), $request->request->get('_token'))) { $entityManager = $this->getDoctrine()->getManager(); $entityManager->remove($<?= $entity_var_singular ?>); $entityManager->flush(); } return $this->redirectToRoute('<?= $route_name ?>_index', [], Response::HTTP_SEE_OTHER); } }