* @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 PrestaShop\PrestaShop\Core\Form\FormHandlerInterface; use PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController; use PrestaShopBundle\Security\Annotation\AdminSecurity; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Controller responsible of "Configure > Shop Parameters > Order Settings" page. */ class OrderPreferencesController extends FrameworkBundleAdminController { /** * @AdminSecurity("is_granted('read', request.get('_legacy_controller'))") * * @param Request $request * * @return Response */ public function indexAction(Request $request) { $legacyController = $request->attributes->get('_legacy_controller'); $generalForm = $this->getGeneralFormHandler()->getForm(); $giftOptionsForm = $this->getGiftOptionsFormHandler()->getForm(); return $this->render('@PrestaShop/Admin/Configure/ShopParameters/OrderPreferences/order_preferences.html.twig', [ 'layoutTitle' => $this->trans('Order settings', 'Admin.Navigation.Menu'), 'enableSidebar' => true, 'help_link' => $this->generateSidebarLink($legacyController), 'generalForm' => $generalForm->createView(), 'giftOptionsForm' => $giftOptionsForm->createView(), 'isMultishippingEnabled' => $this->getConfiguration()->getBoolean('PS_ALLOW_MULTISHIPPING'), 'isAtcpShipWrapEnabled' => $this->getConfiguration()->getBoolean('PS_ATCP_SHIPWRAP'), ]); } /** * @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 edit this.", * redirectRoute="admin_order_preferences") * * @param Request $request * * @return RedirectResponse */ public function processGeneralFormAction(Request $request) { return $this->processForm( $request, $this->getGeneralFormHandler(), 'General' ); } /** * @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 edit this.", * redirectRoute="admin_order_preferences") * * @param Request $request * * @return RedirectResponse */ public function processGiftOptionsFormAction(Request $request) { return $this->processForm( $request, $this->getGiftOptionsFormHandler(), 'GiftOptions' ); } /** * Process the Order Preferences configuration form. * * @param Request $request * @param FormHandlerInterface $formHandler * @param string $hookName * * @return RedirectResponse */ protected function processForm(Request $request, FormHandlerInterface $formHandler, string $hookName) { $this->dispatchHook( 'actionAdminShopParametersOrderPreferencesControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ); $this->dispatchHook('actionAdminShopParametersOrderPreferencesControllerPostProcessBefore', ['controller' => $this]); $form = $formHandler->getForm(); $form->handleRequest($request); if ($form->isSubmitted()) { $data = $form->getData(); $saveErrors = $formHandler->save($data); if (0 === count($saveErrors)) { $this->addFlash('success', $this->trans('Update successful', 'Admin.Notifications.Success')); } else { $this->flashErrors($saveErrors); } } return $this->redirectToRoute('admin_order_preferences'); } /** * @return FormHandlerInterface */ protected function getGeneralFormHandler(): FormHandlerInterface { return $this->get('prestashop.admin.order_preferences.general.form_handler'); } /** * @return FormHandlerInterface */ protected function getGiftOptionsFormHandler(): FormHandlerInterface { return $this->get('prestashop.admin.order_preferences.gift_options.form_handler'); } }