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,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'