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,10 @@
# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
</IfModule>

View File

@@ -0,0 +1,12 @@
services:
PrestaShop\PsAccountsInstaller\Installer\Installer:
class: 'PrestaShop\PsAccountsInstaller\Installer\Installer'
public: true
arguments:
- '5.0.2'
PrestaShop\PsAccountsInstaller\Installer\Facade\PsAccounts:
class: 'PrestaShop\PsAccountsInstaller\Installer\Facade\PsAccounts'
public: true
arguments:
- '@PrestaShop\PsAccountsInstaller\Installer\Installer'

View File

@@ -0,0 +1,21 @@
services:
PrestaShopCorp\Billing\Wrappers\BillingContextWrapper:
class: 'PrestaShopCorp\Billing\Wrappers\BillingContextWrapper'
arguments:
- '@PrestaShop\PsAccountsInstaller\Installer\Facade\PsAccounts'
- '@psxmarketingwithgoogle.context'
- '@psxmarketingwithgoogle.billing_env'
PrestaShopCorp\Billing\Presenter\BillingPresenter:
class: 'PrestaShopCorp\Billing\Presenter\BillingPresenter'
public: true
arguments:
- '@PrestaShopCorp\Billing\Wrappers\BillingContextWrapper'
- '@psxmarketingwithgoogle'
PrestaShopCorp\Billing\Services\BillingService:
class: 'PrestaShopCorp\Billing\Services\BillingService'
public: true
arguments:
- '@PrestaShopCorp\Billing\Wrappers\BillingContextWrapper'
- '@psxmarketingwithgoogle'

View File

@@ -0,0 +1,11 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Builder\CarrierBuilder:
class: PrestaShop\Module\PsxMarketingWithGoogle\Builder\CarrierBuilder
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\CarrierRepository'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\CountryRepository'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\StateRepository'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\TaxRepository'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter'

View File

@@ -0,0 +1,11 @@
<?php
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,16 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Database\Installer:
class: PrestaShop\Module\PsxMarketingWithGoogle\Database\Installer
public: true
arguments:
- '@psxmarketingwithgoogle'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Tracker\Segment'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Handler\ErrorHandler'
PrestaShop\Module\PsxMarketingWithGoogle\Database\Uninstaller:
class: PrestaShop\Module\PsxMarketingWithGoogle\Database\Uninstaller
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\TabRepository'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Tracker\Segment'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Handler\ErrorHandler'

View File

@@ -0,0 +1,76 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\BrandOptionsProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\BrandOptionsProvider
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\ManufacturerRepository'
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\CategoryOptionsProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\CategoryOptionsProvider
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\CategoryRepository'
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\FeatureOptionsProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\FeatureOptionsProvider
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\AttributesRepository'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\LanguageRepository'
- '@=service("psxmarketingwithgoogle.context").language.id'
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\Resolver:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\Resolver
public: true
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\FilterValidator:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\FilterValidator
public: true
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\BrandQueryBuilder:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\BrandQueryBuilder
public: true
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\CategoryQueryBuilder:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\CategoryQueryBuilder
public: true
arguments:
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\FeatureQueryBuilder:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\FeatureQueryBuilder
public: true
arguments:
- '@psxmarketingwithgoogle.context'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\LanguageRepository'
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\OutOfStockQueryBuilder:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\OutOfStockQueryBuilder
public: true
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\PriceQueryBuilder:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\PriceQueryBuilder
public: true
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\ProductIdQueryBuilder:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\ProductIdQueryBuilder
public: true
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\QueryBuilder:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\QueryBuilder
public: true
arguments:
- '@=service("psxmarketingwithgoogle.shop").id'
- '@PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\BrandQueryBuilder'
- '@PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\CategoryQueryBuilder'
- '@PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\FeatureQueryBuilder'
- '@PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\OutOfStockQueryBuilder'
- '@PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\PriceQueryBuilder'
- '@PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\AttributeQueryBuilder\ProductIdQueryBuilder'
PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\ProductEnumerator:
class: PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\ProductEnumerator
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\FilterValidator'
- '@PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\QueryBuilder'

View File

@@ -0,0 +1,7 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Provider\CarrierDataProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\Provider\CarrierDataProvider
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Builder\CarrierBuilder'

View File

@@ -0,0 +1,9 @@
imports:
- { resource: ../common.yml }
- { resource: accounts.yml }
- { resource: billing.yml }
- { resource: installer.yml }
- { resource: builder.yml }
- { resource: installer.yml }
- { resource: product_filter.yml }
- { resource: provider.yml }

View File

@@ -0,0 +1,19 @@
imports:
- { resource: common/parameters.yml }
- { resource: common/adapter.yml }
- { resource: common/buffer.yml }
- { resource: common/config.yml }
- { resource: common/context.yml }
- { resource: common/conversion.yml }
- { resource: common/handler.yml }
- { resource: common/provider.yml }
- { resource: common/repository.yml }
- { resource: common/segment.yml }
services:
psxmarketingwithgoogle:
class: 'PsxMarketingWithGoogle'
public: true
factory: ['Module', 'getInstanceByName']
arguments:
- 'psxmarketingwithgoogle'

View File

@@ -0,0 +1,6 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter:
class: PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter
public: true
arguments:
- '@=service("psxmarketingwithgoogle.shop").id'

View File

@@ -0,0 +1,4 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Buffer\TemplateBuffer:
class: PrestaShop\Module\PsxMarketingWithGoogle\Buffer\TemplateBuffer
public: true

View File

@@ -0,0 +1,4 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Config\Env:
class: PrestaShop\Module\PsxMarketingWithGoogle\Config\Env
public: true

View File

@@ -0,0 +1,60 @@
services:
psxmarketingwithgoogle.context:
class: 'Context'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getContext']
psxmarketingwithgoogle.controller:
class: 'Controller'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getController']
psxmarketingwithgoogle.cookie:
class: 'Cookie'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getCookie']
psxmarketingwithgoogle.language:
class: 'Language'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getLanguage']
psxmarketingwithgoogle.cart:
class: 'Currency'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getCart']
psxmarketingwithgoogle.currency:
class: 'Currency'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getCurrency']
psxmarketingwithgoogle.customer:
class: 'Currency'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getCustomer']
psxmarketingwithgoogle.smarty:
class: 'Smarty'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getSmarty']
psxmarketingwithgoogle.country:
class: 'Country'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getCountry']
psxmarketingwithgoogle.shop:
class: 'Shop'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getShop']
psxmarketingwithgoogle.link:
class: 'Shop'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ContextFactory', 'getLink']
psxmarketingwithgoogle.db:
class: Db
public: true
factory: [ 'Db', 'getInstance' ]

View File

@@ -0,0 +1,13 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Conversion\EnhancedConversionToggle:
class: PrestaShop\Module\PsxMarketingWithGoogle\Conversion\EnhancedConversionToggle
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter'
PrestaShop\Module\PsxMarketingWithGoogle\Conversion\UserDataProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\Conversion\UserDataProvider
public: true
arguments:
- '@psxmarketingwithgoogle.customer'
- '@psxmarketingwithgoogle.cart'

View File

@@ -0,0 +1,13 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Handler\ErrorHandler:
class: PrestaShop\Module\PsxMarketingWithGoogle\Handler\ErrorHandler
public: true
PrestaShop\Module\PsxMarketingWithGoogle\Handler\RemarketingHookHandler:
class: PrestaShop\Module\PsxMarketingWithGoogle\Handler\RemarketingHookHandler
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Buffer\TemplateBuffer'
- '@psxmarketingwithgoogle.context'
- '@psxmarketingwithgoogle'

View File

@@ -0,0 +1,11 @@
<?php
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,5 @@
services:
psxmarketingwithgoogle.billing_env:
class: 'PrestaShop\Module\PsxMarketingWithGoogle\Factory\ParametersFactory'
public: true
factory: ['PrestaShop\Module\PsxMarketingWithGoogle\Factory\ParametersFactory', 'getBillingEnv']

View File

@@ -0,0 +1,35 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Provider\PurchaseEventDataProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\Provider\PurchaseEventDataProvider
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Provider\ProductDataProvider'
- '@psxmarketingwithgoogle.context'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\LanguageRepository'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\CountryRepository'
PrestaShop\Module\PsxMarketingWithGoogle\Provider\CartEventDataProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\Provider\CartEventDataProvider
public: true
arguments:
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\Provider\ProductDataProvider:
class: 'PrestaShop\Module\PsxMarketingWithGoogle\Provider\ProductDataProvider'
public: true
arguments:
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\Provider\PageViewEventDataProvider:
class: 'PrestaShop\Module\PsxMarketingWithGoogle\Provider\PageViewEventDataProvider'
public: true
arguments:
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\Provider\VerificationTagDataProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\Provider\VerificationTagDataProvider
public: true
arguments:
- '@PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\VerificationTagRepository'

View File

@@ -0,0 +1,73 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Repository\TabRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\TabRepository
public: true
PrestaShop\Module\PsxMarketingWithGoogle\Repository\CarrierRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\CarrierRepository
public: true
PrestaShop\Module\PsxMarketingWithGoogle\Repository\AttributesRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\AttributesRepository
public: true
arguments:
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\Repository\CategoryRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\CategoryRepository
public: true
arguments:
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\Repository\CountryRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\CountryRepository
public: true
arguments:
- '@psxmarketingwithgoogle.db'
- '@psxmarketingwithgoogle.context'
- '@psxmarketingwithgoogle.country'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter'
PrestaShop\Module\PsxMarketingWithGoogle\Repository\CurrencyRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\CurrencyRepository
public: true
arguments:
- '@psxmarketingwithgoogle.currency'
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\Repository\LanguageRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\LanguageRepository
public: true
arguments:
- '@=service("psxmarketingwithgoogle.shop").id'
PrestaShop\Module\PsxMarketingWithGoogle\Repository\ManufacturerRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\ManufacturerRepository
public: true
arguments:
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\Repository\ProductRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\ProductRepository
public: true
PrestaShop\Module\PsxMarketingWithGoogle\Repository\StateRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\StateRepository
public: true
arguments:
- '@psxmarketingwithgoogle.db'
PrestaShop\Module\PsxMarketingWithGoogle\Repository\TaxRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\TaxRepository
public: true
arguments:
- '@psxmarketingwithgoogle.db'
- '@psxmarketingwithgoogle.context'
PrestaShop\Module\PsxMarketingWithGoogle\Repository\VerificationTagRepository:
class: PrestaShop\Module\PsxMarketingWithGoogle\Repository\VerificationTagRepository
public: true
arguments:
- '@psxmarketingwithgoogle.db'
- '@psxmarketingwithgoogle.context'

View File

@@ -0,0 +1,6 @@
services:
PrestaShop\Module\PsxMarketingWithGoogle\Tracker\Segment:
class: 'PrestaShop\Module\PsxMarketingWithGoogle\Tracker\Segment'
public: true
arguments:
- '@psxmarketingwithgoogle.context'

View File

@@ -0,0 +1,11 @@
<?php
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,2 @@
imports:
- { resource: ../common.yml }

View File

@@ -0,0 +1,11 @@
<?php
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;