first commit
This commit is contained in:
2
config/services/front/services_dev.yml
Normal file
2
config/services/front/services_dev.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
imports:
|
||||
- { resource: services_prod.yml }
|
||||
53
config/services/front/services_prod.yml
Normal file
53
config/services/front/services_prod.yml
Normal file
@@ -0,0 +1,53 @@
|
||||
imports:
|
||||
- { resource: ../common.yml }
|
||||
|
||||
services:
|
||||
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'
|
||||
|
||||
prestashop.translation.translator_language_loader:
|
||||
class: PrestaShopBundle\Translation\TranslatorLanguageLoader
|
||||
arguments:
|
||||
- '@prestashop.adapter.module.repository.module_repository'
|
||||
2
config/services/front/services_test.yml
Normal file
2
config/services/front/services_test.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
imports:
|
||||
- { resource: services_dev.yml }
|
||||
Reference in New Issue
Block a user