-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathAttributeDataFactory.php
100 lines (89 loc) · 3.04 KB
/
AttributeDataFactory.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model;
use Magento\Framework\ObjectManager\ResetAfterRequestInterface;
/**
* EAV Entity Attribute Data Factory
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class AttributeDataFactory implements ResetAfterRequestInterface
{
public const OUTPUT_FORMAT_JSON = 'json';
public const OUTPUT_FORMAT_TEXT = 'text';
public const OUTPUT_FORMAT_HTML = 'html';
public const OUTPUT_FORMAT_PDF = 'pdf';
public const OUTPUT_FORMAT_ONELINE = 'oneline';
public const OUTPUT_FORMAT_ARRAY = 'array';
// available only for multiply attributes
/**
* @var array
*/
protected $_dataModels = [];
/**
* @var \Magento\Framework\ObjectManagerInterface
*/
protected $_objectManager;
/**
* @var \Magento\Framework\Stdlib\StringUtils
*/
protected $string;
/**
* @param \Magento\Framework\ObjectManagerInterface $objectManager
* @param \Magento\Framework\Stdlib\StringUtils $string
* @codeCoverageIgnore
*/
public function __construct(
\Magento\Framework\ObjectManagerInterface $objectManager,
\Magento\Framework\Stdlib\StringUtils $string
) {
$this->_objectManager = $objectManager;
$this->string = $string;
}
/**
* Return attribute data model by attribute
*
* Set entity to data model (need for work)
*
* @param \Magento\Eav\Model\Attribute $attribute
* @param \Magento\Framework\Model\AbstractModel $entity
* @return \Magento\Eav\Model\Attribute\Data\AbstractData
*/
public function create(\Magento\Eav\Model\Attribute $attribute, \Magento\Framework\Model\AbstractModel $entity)
{
/* @var $dataModel \Magento\Eav\Model\Attribute\Data\AbstractData */
$dataModelClass = $attribute->getDataModel();
if (!empty($dataModelClass)) {
if (empty($this->_dataModels[$dataModelClass])) {
$dataModel = $this->_objectManager->create($dataModelClass);
$this->_dataModels[$dataModelClass] = $dataModel;
} else {
$dataModel = $this->_dataModels[$dataModelClass];
}
} else {
if (empty($this->_dataModels[$attribute->getFrontendInput()])) {
$dataModelClass = sprintf(
'Magento\Eav\Model\Attribute\Data\%s',
$this->string->upperCaseWords($attribute->getFrontendInput())
);
$dataModel = $this->_objectManager->create($dataModelClass);
$this->_dataModels[$attribute->getFrontendInput()] = $dataModel;
} else {
$dataModel = $this->_dataModels[$attribute->getFrontendInput()];
}
}
$dataModel->setAttribute($attribute);
$dataModel->setEntity($entity);
return $dataModel;
}
/**
* @inheritDoc
*/
public function _resetState(): void
{
$this->_dataModels = [];
}
}