* @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\Form\FormInterface; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Responsible of "Configure > Shop Parameters > General > Maintenance" page. */ class MaintenanceController extends FrameworkBundleAdminController { public const CONTROLLER_NAME = 'AdminMaintenance'; /** * @AdminSecurity("is_granted('read', request.get('_legacy_controller'))") * * @param Request $request * @param FormInterface $form * * @return Response */ public function indexAction(Request $request, FormInterface $form = null) { if (null === $form) { $form = $this->get('prestashop.adapter.maintenance.form_handler')->getForm(); } return $this->render('@PrestaShop/Admin/Configure/ShopParameters/maintenance.html.twig', [ 'layoutHeaderToolbarBtn' => [], 'layoutTitle' => $this->trans('Maintenance', 'Admin.Navigation.Menu'), 'requireBulkActions' => false, 'showContentHeader' => true, 'enableSidebar' => true, 'help_link' => $this->generateSidebarLink('AdminMaintenance'), 'requireFilterStatus' => false, 'generalForm' => $form->createView(), ]); } /** * @param Request $request * * @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_maintenance") * @DemoRestricted(redirectRoute="admin_maintenance") * * @return RedirectResponse */ public function processFormAction(Request $request) { $redirectResponse = $this->redirectToRoute('admin_maintenance'); $this->dispatchHook('actionAdminMaintenanceControllerPostProcessBefore', ['controller' => $this]); $form = $this->get('prestashop.adapter.maintenance.form_handler')->getForm(); $form->handleRequest($request); if (!$form->isSubmitted()) { return $redirectResponse; } $data = $form->getData(); $saveErrors = $this->get('prestashop.adapter.maintenance.form_handler')->save($data); if (0 === count($saveErrors)) { $this->addFlash('success', $this->trans('Successful update', 'Admin.Notifications.Success')); return $redirectResponse; } $this->flashErrors($saveErrors); return $redirectResponse; } }