* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Controller\Admin\Configure\ShopParameters; use PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController; use PrestaShopBundle\Security\Annotation\AdminSecurity; use PrestaShopBundle\Security\Annotation\DemoRestricted; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Controller responsible of "Configure > Shop Parameters > Customer Settings" page. */ class CustomerPreferencesController extends FrameworkBundleAdminController { /** * Show customer preferences page. * * @AdminSecurity("is_granted('read', request.get('_legacy_controller'))", message="Access denied.") * * @param Request $request * * @return Response */ public function indexAction(Request $request) { $legacyController = $request->attributes->get('_legacy_controller'); $form = $this->get('prestashop.admin.customer_preferences.form_handler')->getForm(); return $this->render('@PrestaShop/Admin/Configure/ShopParameters/customer_preferences.html.twig', [ 'layoutTitle' => $this->trans('Customers', 'Admin.Navigation.Menu'), 'enableSidebar' => true, 'help_link' => $this->generateSidebarLink($legacyController), 'generalForm' => $form->createView(), ]); } /** * Process the Customer Preferences configuration form. * * @AdminSecurity( * "is_granted('update', request.get('_legacy_controller')) && is_granted('create', request.get('_legacy_controller')) && is_granted('delete', request.get('_legacy_controller'))", * message="You do not have permission to update this.", redirectRoute="admin_customer_preferences" * ) * @DemoRestricted(redirectRoute="admin_customer_preferences") * * @param Request $request * * @return Response */ public function processAction(Request $request) { $formHandler = $this->get('prestashop.admin.customer_preferences.form_handler'); $form = $formHandler->getForm(); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { $data = $form->getData(); if ($errors = $formHandler->save($data)) { $this->flashErrors($errors); return $this->redirectToRoute('admin_customer_preferences'); } $this->addFlash('success', $this->trans('Update successful', 'Admin.Notifications.Success')); return $this->redirectToRoute('admin_customer_preferences'); } $legacyController = $request->attributes->get('_legacy_controller'); return $this->render('@PrestaShop/Admin/Configure/ShopParameters/customer_preferences.html.twig', [ 'layoutTitle' => $this->trans('Customers', 'Admin.Navigation.Menu'), 'enableSidebar' => true, 'help_link' => $this->generateSidebarLink($legacyController), 'generalForm' => $form->createView(), ]); } }