-
Notifications
You must be signed in to change notification settings - Fork 9.3k
/
Copy pathProduct.php
77 lines (70 loc) · 2.24 KB
/
Product.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\ConfigurableProduct\Plugin\Model\ResourceModel;
use Magento\ConfigurableProduct\Model\Product\Type\Configurable;
use Magento\Framework\Indexer\ActionInterface;
class Product
{
/**
* @var Configurable
*/
private $configurable;
/**
* @var ActionInterface
*/
private $productIndexer;
/**
* Initialize Product dependencies.
*
* @param Configurable $configurable
* @param ActionInterface $productIndexer
*/
public function __construct(
Configurable $configurable,
ActionInterface $productIndexer
) {
$this->configurable = $configurable;
$this->productIndexer = $productIndexer;
}
/**
* We need reset attribute set id to attribute after related simple product was saved
*
* @param \Magento\Catalog\Model\ResourceModel\Product $subject
* @param \Magento\Framework\DataObject $object
* @return void
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function beforeSave(
\Magento\Catalog\Model\ResourceModel\Product $subject,
\Magento\Framework\DataObject $object
) {
/** @var \Magento\Catalog\Model\Product $object */
if ($object->getTypeId() == Configurable::TYPE_CODE) {
$object->getTypeInstance()->getSetAttributes($object);
}
}
/**
* Gather configurable parent ids of product being deleted and reindex after delete is complete.
*
* @param \Magento\Catalog\Model\ResourceModel\Product $subject
* @param \Closure $proceed
* @param \Magento\Catalog\Model\Product $product
* @return \Magento\Catalog\Model\ResourceModel\Product
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function aroundDelete(
\Magento\Catalog\Model\ResourceModel\Product $subject,
\Closure $proceed,
\Magento\Catalog\Model\Product $product
) {
$configurableProductIds = $this->configurable->getParentIdsByChild($product->getId());
$result = $proceed($product);
$this->productIndexer->executeList($configurableProductIds);
return $result;
}
}