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,2 @@
imports:
- { resource: services_prod.yml }

View File

@@ -0,0 +1,75 @@
imports:
- { resource: ../common.yml }
services:
_defaults:
public: true
prestashop.core.filter.front_end_object.main:
class: PrestaShop\PrestaShop\Core\Filter\FrontEndObject\MainFilter
arguments:
- cart: '@prestashop.core.filter.front_end_object.cart'
customer: '@prestashop.core.filter.front_end_object.customer'
shop: '@prestashop.core.filter.front_end_object.shop'
configuration: '@prestashop.core.filter.front_end_object.configuration'
prestashop.core.filter.front_end_object.product:
class: PrestaShop\PrestaShop\Core\Filter\FrontEndObject\ProductFilter
prestashop.core.filter.front_end_object.cart:
class: PrestaShop\PrestaShop\Core\Filter\FrontEndObject\CartFilter
arguments:
- '@prestashop.core.filter.front_end_object.product_collection'
prestashop.core.filter.front_end_object.search_result_product:
class: PrestaShop\PrestaShop\Core\Filter\FrontEndObject\SearchResultProductFilter
prestashop.core.filter.front_end_object.customer:
class: PrestaShop\PrestaShop\Core\Filter\FrontEndObject\CustomerFilter
prestashop.core.filter.front_end_object.shop:
class: PrestaShop\PrestaShop\Core\Filter\FrontEndObject\ShopFilter
prestashop.core.filter.front_end_object.configuration:
class: PrestaShop\PrestaShop\Core\Filter\FrontEndObject\ConfigurationFilter
prestashop.core.filter.front_end_object.product_collection:
class: PrestaShop\PrestaShop\Core\Filter\CollectionFilter
calls:
- method: queue
arguments:
- ['@prestashop.core.filter.front_end_object.product']
prestashop.core.filter.front_end_object.search_result_product_collection:
class: PrestaShop\PrestaShop\Core\Filter\CollectionFilter
calls:
- method: queue
arguments:
- ['@prestashop.core.filter.front_end_object.search_result_product']
prestashop.adapter.module.repository.module_repository:
class: 'PrestaShop\PrestaShop\Adapter\Module\Repository\ModuleRepository'
arguments:
- !php/const _PS_ROOT_DIR_
- !php/const _PS_MODULE_DIR_
prestashop.translation.translator_language_loader:
class: PrestaShopBundle\Translation\TranslatorLanguageLoader
arguments:
- '@prestashop.adapter.module.repository.module_repository'
# Special definition for legacy environments since they don't initialize the request stack, which is a dependency for the feature flag checker
Symfony\Component\HttpFoundation\RequestStack:
factory: [ 'PrestaShopBundle\Http\RequestStackFactory', 'buildRequestStack' ]
lazy: true
request_stack:
alias: Symfony\Component\HttpFoundation\RequestStack
# Special validator to validate tokens from admin in the front environment
PrestaShopBundle\Security\Admin\LegacyAdminTokenValidator:
public: true
lazy: true
arguments:
$employeeRepository: '@PrestaShop\PrestaShop\Adapter\Employee\EmployeeRepository'
$requestStack: '@request_stack'

View File

@@ -0,0 +1,2 @@
imports:
- { resource: services_dev.yml }