Bläddra i källkod

Backend : correctif switch Section

packProduct
Guillaume 3 år sedan
förälder
incheckning
82787477f1
1 ändrade filer med 4 tillägg och 4 borttagningar
  1. +4
    -4
      Controller/Section/SwitchSectionAdminController.php

+ 4
- 4
Controller/Section/SwitchSectionAdminController.php Visa fil

namespace Lc\CaracoleBundle\Controller\Section; namespace Lc\CaracoleBundle\Controller\Section;


use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Lc\CaracoleBundle\Builder\User\UserMerchantBuilder;
use Lc\CaracoleBundle\Container\Section\SectionContainer; use Lc\CaracoleBundle\Container\Section\SectionContainer;
use Lc\CaracoleBundle\Form\Section\SwitchSectionFormType; use Lc\CaracoleBundle\Form\Section\SwitchSectionFormType;
use Lc\CaracoleBundle\Repository\Section\SectionRepository;
use Lc\CaracoleBundle\Resolver\MerchantResolver; use Lc\CaracoleBundle\Resolver\MerchantResolver;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;


class SwitchSectionAdminController extends AbstractController class SwitchSectionAdminController extends AbstractController
{ {

/** /**
* @Route("/section/switch", name="carac_section_switch")
* @Route("/admin/section/switch", name="carac_section_switch")
*/ */
public function switchSection( public function switchSection(
Request $request, Request $request,
EntityManagerInterface $entityManager, EntityManagerInterface $entityManager,
MerchantResolver $merchantResolver, MerchantResolver $merchantResolver,
SectionContainer $sectionContainer
SectionContainer $sectionContainer,
UserMerchantBuilder $userMerchantBuilder
) { ) {
$form = $this->createForm(SwitchSectionFormType::class); $form = $this->createForm(SwitchSectionFormType::class);
$form->handleRequest($request); $form->handleRequest($request);

Laddar…
Avbryt
Spara