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,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,3 @@
imports:
- { resource: ../common.yml }

View File

@@ -0,0 +1,35 @@
services:
##########################
# Shared Services :
# Those services might be accessed directly from the core container
# by some modules.
# Doing so we maintain compatibility & ensure the same instance is provided.
PrestaShop\Module\PsAccounts\Service\PsAccountsService:
class: PrestaShop\Module\PsAccounts\Service\PsAccountsService
public: true
factory: ['PrestaShop\Module\PsAccounts\ServiceProvider\StaticProvider', 'provide']
arguments:
- 'PrestaShop\Module\PsAccounts\Service\PsAccountsService'
PrestaShop\Module\PsAccounts\Service\PsBillingService:
class: PrestaShop\Module\PsAccounts\Service\PsBillingService
public: true
factory: [ 'PrestaShop\Module\PsAccounts\ServiceProvider\StaticProvider', 'provide' ]
arguments:
- 'PrestaShop\Module\PsAccounts\Service\PsBillingService'
PrestaShop\Module\PsAccounts\Repository\UserTokenRepository:
class: PrestaShop\Module\PsAccounts\Repository\UserTokenRepository
public: true
factory: ['PrestaShop\Module\PsAccounts\ServiceProvider\StaticProvider', 'provide']
arguments:
- 'PrestaShop\Module\PsAccounts\Repository\UserTokenRepository'
PrestaShop\Module\PsAccounts\Presenter\PsAccountsPresenter:
class: PrestaShop\Module\PsAccounts\Presenter\PsAccountsPresenter
public: true
factory: ['PrestaShop\Module\PsAccounts\ServiceProvider\StaticProvider', 'provide']
arguments:
- 'PrestaShop\Module\PsAccounts\Presenter\PsAccountsPresenter'

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;

View File

@@ -0,0 +1,18 @@
ps_accounts_oauth2:
path: ps_accounts/oauth2
methods: [GET]
defaults:
_controller: 'PrestaShop\Module\PsAccounts\Controller\Admin\OAuth2Controller::initOAuth2FlowAction'
_anonymous_controller: true
_legacy_controller: SfAdminOAuth2PsAccounts
_legacy_link: SfAdminOAuth2PsAccounts
ps_accounts_login:
path: ps_accounts/login
methods: [GET]
defaults:
_controller: 'PrestaShop\Module\PsAccounts\Controller\Admin\OAuth2Controller::displayLoginAction'
_anonymous_controller: true
_legacy_controller: SfAdminLoginPsAccounts
_legacy_link: SfAdminLoginPsAccounts
# _disable_module_prefix: true

View File

@@ -0,0 +1,5 @@
services:
PrestaShop\Module\PsAccounts\Controller\Admin\OAuth2Controller:
class: PrestaShop\Module\PsAccounts\Controller\Admin\OAuth2Controller
# autowire: true
# autoconfigure: true