123456789101112131415161718192021222324 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
- <type name="Magento\Quote\Plugin\UpdateQuoteStore">
- <arguments>
- <argument name="quoteRepository" xsi:type="object">Magento\Quote\Model\QuoteRepository\Proxy</argument>
- <argument name="checkoutSession" xsi:type="object">Magento\Checkout\Model\Session\Proxy</argument>
- </arguments>
- </type>
- <type name="Magento\Store\Model\StoreSwitcherInterface">
- <plugin name="update_quote_item_store_after_switch_store_view" type="Magento\Quote\Plugin\UpdateQuoteItemStore"/>
- </type>
- <type name="Magento\Store\Api\StoreCookieManagerInterface">
- <plugin name="update_quote_store_after_switch_store_view" type="Magento\Quote\Plugin\UpdateQuoteStore"/>
- </type>
- <type name="Magento\Customer\Model\ResourceModel\Customer">
- <plugin name="cart_recollect_on_group_change" type="Magento\Quote\Plugin\RecollectOnGroupChange"/>
- </type>
- </config>
|