123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Paypal\Model\Express;
- use Magento\Quote\Model\QuoteRepository\SaveHandler;
- use Magento\Quote\Api\Data\CartInterface;
- use Magento\Quote\Model\Quote\ProductOptionFactory;
- /**
- * Plugin for Magento\Quote\Model\QuoteRepository\SaveHandler
- * replaces cart item product options for disabled quote
- * which prevents it to be processed after placement of order
- * via PayPal Express payment solution.
- */
- class QuotePlugin
- {
- /**
- * @var ProductOptionFactory
- */
- private $productOptionFactory;
- /**
- * @param ProductOptionFactory $productOptionFactory
- */
- public function __construct(
- ProductOptionFactory $productOptionFactory
- ) {
- $this->productOptionFactory = $productOptionFactory;
- }
-
- /**
- * Replace cart item product options for disabled quote.
- *
- * @param SaveHandler $subject
- * @param CartInterface $quote
- * @return array
- * @see MAGETWO-70500
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function beforeSave(SaveHandler $subject, CartInterface $quote)
- {
- if (!$quote->getIsActive()) {
- $items = $quote->getItems();
- if ($items) {
- foreach ($items as $item) {
- /** @var \Magento\Quote\Model\Quote\Item $item */
- if (!$item->isDeleted()) {
- $item->setProductOption($this->productOptionFactory->create());
- }
- }
- }
- }
- return [$quote];
- }
- }
|