first commit

This commit is contained in:
2024-11-05 12:22:50 +01:00
commit e5682a3912
19641 changed files with 2948548 additions and 0 deletions

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,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,17 @@
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:
- '@psxmarketingwithgoogle'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\TabRepository'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Tracker\Segment'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Handler\ErrorHandler'

View File

@@ -0,0 +1,12 @@
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'
- '@PrestaShop\Module\PsxMarketingWithGoogle\Repository\CarrierRepository'
PrestaShop\Module\PsxMarketingWithGoogle\Provider\GoogleTagProvider:
class: PrestaShop\Module\PsxMarketingWithGoogle\Provider\GoogleTagProvider
public: true

View File

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