Current path: home/webdevt/prestashop17/src/PrestaShopBundle/Controller/Admin/Improve/Payment/
?? Go up: /home/webdevt/prestashop17/src/PrestaShopBundle/Controller/Admin/Improve
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @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\Improve\Payment;
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;
/**
* Class PaymentPreferencesController is responsible for "Improve > Payment > Preferences" page.
*/
class PaymentPreferencesController extends FrameworkBundleAdminController
{
/**
* Show payment 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');
$paymentModulesListProvider = $this->get('prestashop.adapter.module.payment_module_provider');
$shopContext = $this->get('prestashop.adapter.shop.context');
$isSingleShopContext = $shopContext->isSingleShopContext();
$paymentPreferencesForm = null;
$paymentModulesCount = 0;
if ($isSingleShopContext) {
$paymentModulesCount = count($paymentModulesListProvider->getPaymentModuleList());
$paymentPreferencesForm = $this->getPaymentPreferencesFormHandler()->getForm()->createView();
}
return $this->render('@PrestaShop/Admin/Improve/Payment/Preferences/payment_preferences.html.twig', [
'enableSidebar' => true,
'help_link' => $this->generateSidebarLink($legacyController),
'paymentPreferencesForm' => $paymentPreferencesForm,
'isSingleShopContext' => $isSingleShopContext,
'paymentModulesCount' => $paymentModulesCount,
]);
}
/**
* Process payment modules preferences form.
*
* @AdminSecurity(
* "is_granted(['update', 'create', 'delete'], request.get('_legacy_controller'))",
* message="Access denied.",
* redirectRoute="admin_payment_preferences"
* )
*
* @param Request $request
*
* @return RedirectResponse
*/
public function processFormAction(Request $request)
{
$paymentPreferencesFormHandler = $this->getPaymentPreferencesFormHandler();
$paymentPreferencesForm = $paymentPreferencesFormHandler->getForm();
$paymentPreferencesForm->handleRequest($request);
if ($paymentPreferencesForm->isSubmitted()) {
$paymentPreferences = $paymentPreferencesForm->getData();
$errors = $paymentPreferencesFormHandler->save($paymentPreferences);
if (empty($errors)) {
$this->addFlash('success', $this->trans('Successful update.', 'Admin.Notifications.Success'));
return $this->redirectToRoute('admin_payment_preferences');
}
$this->flashErrors($errors);
}
return $this->redirectToRoute('admin_payment_preferences');
}
/**
* @return FormHandlerInterface
*/
private function getPaymentPreferencesFormHandler(): FormHandlerInterface
{
return $this->get('prestashop.admin.payment_preferences.form_handler');
}
}