-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Expand file tree
/
Copy pathConfig.php
More file actions
117 lines (105 loc) · 2.91 KB
/
Config.php
File metadata and controls
117 lines (105 loc) · 2.91 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/**
* Copyright 2015 Adobe
* All Rights Reserved.
*/
namespace Magento\Eav\Model\ResourceModel;
/**
* Eav Resource Config model
*/
class Config extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
* Array of entity types
*
* @var array
*/
protected static $_entityTypes = [];
/**
* Array of attributes
*
* @var array
*/
protected static $_attributes = [];
/**
* Resource initialization
*
* @return void
* @codeCoverageIgnore
*/
protected function _construct()
{
$this->_init('eav_entity_type', 'entity_type_id');
}
/**
* Load all entity types
*
* @return $this
*/
protected function _loadTypes()
{
$connection = $this->getConnection();
if (!$connection) {
return $this;
}
if (empty(self::$_entityTypes)) {
$select = $connection->select()->from($this->getMainTable());
$data = $connection->fetchAll($select);
foreach ($data as $row) {
self::$_entityTypes['by_id'][$row['entity_type_id']] = $row;
self::$_entityTypes['by_code'][$row['entity_type_code']] = $row;
}
}
return $this;
}
/**
* Load attribute types
*
* @param int $typeId
* @return array
*/
protected function _loadTypeAttributes($typeId)
{
if (!isset(self::$_attributes[$typeId])) {
$connection = $this->getConnection();
$bind = ['entity_type_id' => $typeId];
$select = $connection->select()->from(
$this->getTable('eav_attribute')
)->where(
'entity_type_id = :entity_type_id'
);
self::$_attributes[$typeId] = $connection->fetchAll($select, $bind);
}
return self::$_attributes[$typeId];
}
/**
* Retrieve entity type data
*
* @param string $entityType
* @return array
*/
public function fetchEntityTypeData($entityType)
{
$this->_loadTypes();
if (is_numeric($entityType)) {
$info = isset(
self::$_entityTypes['by_id'][$entityType]
) ? self::$_entityTypes['by_id'][$entityType] : null;
} else {
$info = isset(
self::$_entityTypes['by_code'][$entityType]
) ? self::$_entityTypes['by_code'][$entityType] : null;
}
$data = [];
if ($info) {
$data['entity'] = $info;
$attributes = $this->_loadTypeAttributes($info['entity_type_id']);
$data['attributes'] = [];
foreach ($attributes as $attribute) {
$data['attributes'][$attribute['attribute_id']] = $attribute;
$data['attributes'][$attribute['attribute_code']] = $attribute['attribute_id'];
}
}
return $data;
}
}