|
|
@@ -3,9 +3,9 @@ |
|
|
|
namespace Lc\CaracoleBundle\Controller\Section; |
|
|
|
|
|
|
|
use Doctrine\ORM\EntityManagerInterface; |
|
|
|
use Lc\CaracoleBundle\Builder\User\UserMerchantBuilder; |
|
|
|
use Lc\CaracoleBundle\Container\Section\SectionContainer; |
|
|
|
use Lc\CaracoleBundle\Form\Section\SwitchSectionFormType; |
|
|
|
use Lc\CaracoleBundle\Repository\Section\SectionRepository; |
|
|
|
use Lc\CaracoleBundle\Resolver\MerchantResolver; |
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
|
|
|
use Symfony\Component\HttpFoundation\Request; |
|
|
@@ -13,15 +13,15 @@ use Symfony\Component\Routing\Annotation\Route; |
|
|
|
|
|
|
|
class SwitchSectionAdminController extends AbstractController |
|
|
|
{ |
|
|
|
|
|
|
|
/** |
|
|
|
* @Route("/section/switch", name="carac_section_switch") |
|
|
|
* @Route("/admin/section/switch", name="carac_section_switch") |
|
|
|
*/ |
|
|
|
public function switchSection( |
|
|
|
Request $request, |
|
|
|
EntityManagerInterface $entityManager, |
|
|
|
MerchantResolver $merchantResolver, |
|
|
|
SectionContainer $sectionContainer |
|
|
|
SectionContainer $sectionContainer, |
|
|
|
UserMerchantBuilder $userMerchantBuilder |
|
|
|
) { |
|
|
|
$form = $this->createForm(SwitchSectionFormType::class); |
|
|
|
$form->handleRequest($request); |