Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?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 Academic Free License version 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/AFL-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.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;

View File

@@ -0,0 +1,49 @@
services:
_defaults:
public: true
PsCheckout\Infrastructure\Bootstrap\Install\Installer:
class: PsCheckout\Infrastructure\Bootstrap\Install\Installer
arguments:
- '@PsCheckout\Infrastructure\Bootstrap\Install\ConfigurationInstaller'
- '@PsCheckout\Infrastructure\Bootstrap\Install\DatabaseTableInstaller'
- '@PsCheckout\Infrastructure\Bootstrap\Install\FundingSourceInstaller'
- '@PsCheckout\Infrastructure\Bootstrap\Install\OrderStateInstaller'
- '@PsCheckout\Infrastructure\Bootstrap\Install\CompatibilityRulesInstaller'
PsCheckout\Infrastructure\Bootstrap\Install\ConfigurationInstaller:
class: PsCheckout\Infrastructure\Bootstrap\Install\ConfigurationInstaller
arguments:
- '@PsCheckout\Infrastructure\Repository\ShopRepository'
- '@PsCheckout\Infrastructure\Adapter\Configuration'
PsCheckout\Infrastructure\Bootstrap\Install\DatabaseTableInstaller:
class: PsCheckout\Infrastructure\Bootstrap\Install\DatabaseTableInstaller
arguments:
- '@ps_checkout.db'
PsCheckout\Infrastructure\Bootstrap\Install\FundingSourceInstaller:
class: PsCheckout\Infrastructure\Bootstrap\Install\FundingSourceInstaller
arguments:
- '@PsCheckout\Infrastructure\Repository\ShopRepository'
- '@PsCheckout\Infrastructure\Repository\FundingSourceRepository'
PsCheckout\Infrastructure\Bootstrap\Install\OrderStateInstaller:
class: PsCheckout\Infrastructure\Bootstrap\Install\OrderStateInstaller
arguments:
- '@PsCheckout\Infrastructure\Adapter\Configuration'
- '@PsCheckout\Infrastructure\Adapter\Language'
- '@=service("ps_checkout.module").name'
PsCheckout\Infrastructure\Bootstrap\Install\CompatibilityRulesInstaller:
class: PsCheckout\Infrastructure\Bootstrap\Install\CompatibilityRulesInstaller
arguments:
- '@PsCheckout\Infrastructure\Repository\CountryRepository'
- '@PsCheckout\Infrastructure\Repository\CurrencyRepository'
PsCheckout\Infrastructure\Bootstrap\Install\ApplePayInstaller:
class: 'PsCheckout\Infrastructure\Bootstrap\Install\ApplePayInstaller'
public: true
arguments:
- '@PsCheckout\Infrastructure\Adapter\SystemConfiguration'
- '@PsCheckout\Infrastructure\Adapter\Configuration'

View File

@@ -0,0 +1,60 @@
services:
_defaults:
public: true
PsCheckout\Presentation\Presenter\Settings\Admin\AdminSettingsPresenter:
class: PsCheckout\Presentation\Presenter\Settings\Admin\AdminSettingsPresenter
arguments:
- [
'@PsCheckout\Presentation\Presenter\Settings\Admin\Modules\ContextModule',
'@PsCheckout\Presentation\Presenter\Settings\Admin\Modules\ConfigurationModule',
'@PsCheckout\Presentation\Presenter\Settings\Admin\Modules\PaypalModule',
]
PsCheckout\Presentation\Presenter\Settings\Admin\Modules\ContextModule:
class: PsCheckout\Presentation\Presenter\Settings\Admin\Modules\ContextModule
arguments:
- '@=service("ps_checkout.module").name'
- '@=service("ps_checkout.module").version'
- '@PsCheckout\Infrastructure\Adapter\Context'
- '@PsCheckout\Infrastructure\Adapter\Link'
- '@PsCheckout\Infrastructure\Adapter\Configuration'
- '@PsCheckout\Infrastructure\Environment\Env'
PsCheckout\Presentation\Presenter\Settings\Admin\Modules\ConfigurationModule:
class: PsCheckout\Presentation\Presenter\Settings\Admin\Modules\ConfigurationModule
arguments:
- '@=service("ps_checkout.module").id'
- '@PsCheckout\Infrastructure\Adapter\Configuration'
- '@PsCheckout\Presentation\Presenter\FundingSource\FundingSourcePresenter'
- '@=service("PsCheckout\\Infrastructure\\Adapter\\Context").getShop().id'
PsCheckout\Presentation\Presenter\Settings\Admin\Modules\PaypalModule:
class: PsCheckout\Presentation\Presenter\Settings\Admin\Modules\PaypalModule
arguments:
- '@PsCheckout\Infrastructure\Adapter\Configuration'
PsCheckout\Presentation\Presenter\PayPalOrder\PayPalOrderTransactionPresenter:
class: PsCheckout\Presentation\Presenter\PayPalOrder\PayPalOrderTransactionPresenter
arguments:
- '@PsCheckout\Presentation\Presenter\Date\DatePresenter'
- '@PsCheckout\Module\Presentation\Translator'
PsCheckout\Presentation\Presenter\PayPalOrder\PayPalOrderTotalsPresenter:
class: PsCheckout\Presentation\Presenter\PayPalOrder\PayPalOrderTotalsPresenter
PsCheckout\Presentation\Presenter\PayPalOrder\PayPalOrderPresenter:
class: PsCheckout\Presentation\Presenter\PayPalOrder\PayPalOrderPresenter
arguments:
- '@PsCheckout\Presentation\Presenter\PayPalOrder\PayPalOrderTransactionPresenter'
- '@PsCheckout\Presentation\Presenter\PayPalOrder\PayPalOrderTotalsPresenter'
- '@PsCheckout\Core\PayPal\Card3DSecure\Card3DSecureValidator'
- '@PsCheckout\Presentation\Presenter\FundingSource\LogoPresenter'
- '@PsCheckout\Presentation\Presenter\FundingSource\FundingSourceTranslationProvider'
- '@PsCheckout\Module\Presentation\Translator'
- '@PsCheckout\Infrastructure\Repository\PayPalOrderRepository'
PsCheckout\Presentation\Presenter\Date\DatePresenter:
class: PsCheckout\Presentation\Presenter\Date\DatePresenter
arguments:
- '@PsCheckout\Infrastructure\Adapter\Configuration'

View File

@@ -0,0 +1,8 @@
services:
_defaults:
public: true
PsCheckout\Infrastructure\Action\SaveBatchConfigurationActionInterface:
class: PsCheckout\Infrastructure\Action\SaveBatchConfigurationAction
arguments:
- '@PsCheckout\Infrastructure\Adapter\Configuration'

View File

@@ -0,0 +1,11 @@
services:
_defaults:
public: true
PsCheckout\Infrastructure\Repository\ShopRepository:
class: PsCheckout\Infrastructure\Repository\ShopRepository
PsCheckout\Infrastructure\Repository\PaymentTokenRepository:
class: PsCheckout\Infrastructure\Repository\PaymentTokenRepository
arguments:
- '@ps_checkout.db'

View File

@@ -0,0 +1,10 @@
imports:
- { resource: ../common.yml }
- { resource: install.yml }
- { resource: presenter.yml }
- { resource: repository.yml }
- { resource: process.yml }
services:
_defaults:
public: true