Files
wyczarujprezent.pl/modules/paypal/classes/Form/Controller/AdminPayPalInstallment/FormInstallment.php
2024-10-28 22:14:22 +01:00

295 lines
12 KiB
PHP

<?php
/**
* 2007-2022 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* 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 http://www.prestashop.com for more information.
*
* @author 2007-2022 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @copyright PayPal
*/
namespace PaypalAddons\classes\Form\Controller\AdminPayPalInstallment;
use Configuration;
use Context;
use Country;
use Module;
use PaypalAddons\classes\Form\Field\Select;
use PaypalAddons\classes\Form\Field\SelectOption;
use PaypalAddons\classes\Form\FormInterface;
use PaypalAddons\classes\InstallmentBanner\ConfigurationMap;
use Tools;
class FormInstallment implements FormInterface
{
/** @var \Paypal */
protected $module;
protected $className;
public function __construct()
{
$this->module = Module::getInstanceByName('paypal');
$reflection = new \ReflectionClass($this);
$this->className = $reflection->getShortName();
}
/**
* @return array
*/
public function getFields()
{
$isoCountryDefault = Tools::strtolower(Country::getIsoById(Configuration::get('PS_COUNTRY_DEFAULT')));
$input = [];
$input[] = [
'type' => 'html',
'html_content' => $this->getDisclaimerHtml(),
'name' => '',
'col' => 12,
'label' => '',
];
if (in_array($isoCountryDefault, ConfigurationMap::getBnplAvailableCountries())) {
$input[] = [
'type' => 'switch',
'label' => $this->module->l('Enable \'Pay in X times\' in your checkout', $this->className),
'name' => ConfigurationMap::ENABLE_BNPL,
'is_bool' => true,
'values' => [
[
'id' => ConfigurationMap::ENABLE_BNPL . '_on',
'value' => 1,
'label' => $this->module->l('Enabled', $this->className),
],
[
'id' => ConfigurationMap::ENABLE_BNPL . '_off',
'value' => 0,
'label' => $this->module->l('Disabled', $this->className),
],
],
];
$input[] = [
'type' => 'html',
'html_content' => $this->getHtmlBnplPageDisplayingSetting(),
'name' => '',
'label' => $this->module->l('\'Pay in X times\' is active on', $this->className),
];
}
$input[] = [
'type' => 'switch',
'label' => $this->module->l('Enable the display of banners', $this->className),
'name' => ConfigurationMap::ENABLE_INSTALLMENT,
'is_bool' => true,
'hint' => $this->module->l('Let your customers know about the option \'Pay 4x PayPal\' by displaying banners on your site.', $this->className),
'values' => [
[
'id' => ConfigurationMap::ENABLE_INSTALLMENT . '_on',
'value' => 1,
'label' => $this->module->l('Enabled', $this->className),
],
[
'id' => ConfigurationMap::ENABLE_INSTALLMENT . '_off',
'value' => 0,
'label' => $this->module->l('Disabled', $this->className),
],
],
];
$input[] = [
'type' => 'html',
'html_content' => $this->getHtmlBlockPageDisplayingSetting(),
'name' => '',
'label' => '',
];
$input[] = [
'type' => 'switch',
'label' => $this->module->l('Advanced options', $this->className),
'name' => ConfigurationMap::ADVANCED_OPTIONS_INSTALLMENT,
'is_bool' => true,
'values' => [
[
'id' => ConfigurationMap::ADVANCED_OPTIONS_INSTALLMENT . '_on',
'value' => 1,
'label' => $this->module->l('Enabled', $this->className),
],
[
'id' => ConfigurationMap::ADVANCED_OPTIONS_INSTALLMENT . '_off',
'value' => 0,
'label' => $this->module->l('Disabled', $this->className),
],
],
];
$input[] = [
'type' => 'html',
'label' => $this->module->l('Widget code', $this->className),
'hint' => $this->module->l('By default, PayPal 4x banner is displayed on your web site via PrestaShop native hook. If you choose to use widgets, you will be able to copy widget code and insert it wherever you want in the web site template.', $this->className),
'name' => '',
'html_content' => $this->getWidgetField(),
];
$input[] = [
'type' => 'html',
'html_content' => $this->getBannerStyleSection(),
'name' => '',
'label' => $this->module->l('Home page and category page styles', $this->className),
];
$fields = [
'legend' => [
'title' => $this->module->l('Settings', $this->className),
'icon' => 'icon-cogs',
],
'input' => $input,
'submit' => [
'title' => $this->module->l('Save', $this->className),
'class' => 'btn btn-default pull-right button',
'name' => 'installmentForm',
],
'id_form' => 'pp_config_installment',
];
return $fields;
}
/**
* @return array
*/
public function getValues()
{
return [
ConfigurationMap::ENABLE_INSTALLMENT => (int) Configuration::get(ConfigurationMap::ENABLE_INSTALLMENT),
ConfigurationMap::ADVANCED_OPTIONS_INSTALLMENT => (int) Configuration::get(ConfigurationMap::ADVANCED_OPTIONS_INSTALLMENT),
ConfigurationMap::ENABLE_BNPL => (int) Configuration::get(ConfigurationMap::ENABLE_BNPL),
];
}
/**
* @return bool
*/
public function save()
{
$return = true;
if (Tools::isSubmit('installmentForm') === false) {
return $return;
}
$return &= Configuration::updateValue(ConfigurationMap::ENABLE_INSTALLMENT, (int) Tools::getValue(ConfigurationMap::ENABLE_INSTALLMENT));
$return &= Configuration::updateValue(ConfigurationMap::ADVANCED_OPTIONS_INSTALLMENT, (int) Tools::getValue(ConfigurationMap::ADVANCED_OPTIONS_INSTALLMENT));
$return &= Configuration::updateValue(ConfigurationMap::PRODUCT_PAGE, (int) Tools::getValue(ConfigurationMap::PRODUCT_PAGE));
$return &= Configuration::updateValue(ConfigurationMap::CART_PAGE, (int) Tools::getValue(ConfigurationMap::CART_PAGE));
$return &= Configuration::updateValue(ConfigurationMap::CHECKOUT_PAGE, Tools::getValue(ConfigurationMap::CHECKOUT_PAGE));
$return &= Configuration::updateValue(ConfigurationMap::HOME_PAGE, (int) Tools::getValue(ConfigurationMap::HOME_PAGE));
$return &= Configuration::updateValue(ConfigurationMap::CATEGORY_PAGE, (int) Tools::getValue(ConfigurationMap::CATEGORY_PAGE));
$return &= Configuration::updateValue(ConfigurationMap::COLOR, Tools::getValue(ConfigurationMap::COLOR));
// BNPL configurations
$return &= Configuration::updateValue(ConfigurationMap::ENABLE_BNPL, (int) Tools::getValue(ConfigurationMap::ENABLE_BNPL));
$return &= Configuration::updateValue(ConfigurationMap::BNPL_CHECKOUT_PAGE, (int) Tools::getValue(ConfigurationMap::BNPL_CHECKOUT_PAGE));
$return &= Configuration::updateValue(ConfigurationMap::BNPL_CART_PAGE, (int) Tools::getValue(ConfigurationMap::BNPL_CART_PAGE));
$return &= Configuration::updateValue(ConfigurationMap::BNPL_PRODUCT_PAGE, (int) Tools::getValue(ConfigurationMap::BNPL_PRODUCT_PAGE));
$return &= Configuration::updateValue(ConfigurationMap::BNPL_PAYMENT_STEP_PAGE, (int) Tools::getValue(ConfigurationMap::BNPL_PAYMENT_STEP_PAGE));
return $return;
}
/**
* @return string
*/
protected function getHtmlBnplPageDisplayingSetting()
{
Context::getContext()->smarty->assign([
ConfigurationMap::BNPL_PRODUCT_PAGE => Configuration::get(ConfigurationMap::BNPL_PRODUCT_PAGE),
ConfigurationMap::BNPL_PAYMENT_STEP_PAGE => Configuration::get(ConfigurationMap::BNPL_PAYMENT_STEP_PAGE),
ConfigurationMap::BNPL_CART_PAGE => Configuration::get(ConfigurationMap::BNPL_CART_PAGE),
ConfigurationMap::BNPL_CHECKOUT_PAGE => Configuration::get(ConfigurationMap::BNPL_CHECKOUT_PAGE),
]);
return Context::getContext()->smarty->fetch(_PS_MODULE_DIR_ . $this->module->name . '/views/templates/admin/_partials/paypalBanner/bnplPageDisplayingSetting.tpl');
}
/**
* @return string
*/
protected function getHtmlBlockPageDisplayingSetting()
{
Context::getContext()->smarty->assign([
ConfigurationMap::PRODUCT_PAGE => Configuration::get(ConfigurationMap::PRODUCT_PAGE),
ConfigurationMap::HOME_PAGE => Configuration::get(ConfigurationMap::HOME_PAGE),
ConfigurationMap::CATEGORY_PAGE => Configuration::get(ConfigurationMap::CATEGORY_PAGE),
ConfigurationMap::CART_PAGE => Configuration::get(ConfigurationMap::CART_PAGE),
ConfigurationMap::CHECKOUT_PAGE => Configuration::get(ConfigurationMap::CHECKOUT_PAGE),
]);
return Context::getContext()->smarty->fetch(_PS_MODULE_DIR_ . $this->module->name . '/views/templates/admin/_partials/paypalBanner/installmentPageDisplayingSetting.tpl');
}
/**
* @return string
*/
protected function getWidgetField()
{
return Context::getContext()->smarty
->assign('widgetCode', '{widget name=\'paypal\' action=\'banner4x\'}')
->assign('confName', 'installmentWidgetCode')
->fetch(_PS_MODULE_DIR_ . $this->module->name . '/views/templates/admin/_partials/form/fields/widgetCode.tpl');
}
protected function getBannerStyleSection()
{
$isoCountryDefault = Tools::strtolower(Country::getIsoById(Configuration::get('PS_COUNTRY_DEFAULT')));
$colorOptions = [
new SelectOption(ConfigurationMap::COLOR_GRAY, $this->module->l('gray', $this->className)),
new SelectOption(ConfigurationMap::COLOR_BLUE, $this->module->l('blue', $this->className)),
new SelectOption(ConfigurationMap::COLOR_BLACK, $this->module->l('black', $this->className)),
new SelectOption(ConfigurationMap::COLOR_WHITE, $this->module->l('white', $this->className)),
];
if ($isoCountryDefault !== 'de') {
$colorOptions[] = new SelectOption(ConfigurationMap::COLOR_MONOCHROME, $this->module->l('monochrome', $this->className));
$colorOptions[] = new SelectOption(ConfigurationMap::COLOR_GRAYSCALE, $this->module->l('grayscale', $this->className));
}
$colorSelect = new Select(
ConfigurationMap::COLOR,
$colorOptions,
null,
Configuration::get(ConfigurationMap::COLOR, null, null, null, ConfigurationMap::COLOR_GRAY)
);
return Context::getContext()->smarty
->assign('colorSelect', $colorSelect)
->fetch(_PS_MODULE_DIR_ . $this->module->name . '/views/templates/admin/_partials/paypalBanner/bannerStyleSection.tpl');
}
protected function getDisclaimerHtml()
{
$isoCountryDefault = Country::getIsoById(Configuration::get('PS_COUNTRY_DEFAULT'));
return Context::getContext()->smarty
->assign('isoCountryDefault', Tools::strtolower($isoCountryDefault))
->fetch(_PS_MODULE_DIR_ . $this->module->name . '/views/templates/admin/_partials/paypalBanner/installmentDisclaimer.tpl');
}
}