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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model\ResourceModel\Entity\Attribute\Option;
/**
* Entity attribute option collection
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
{
/**
* Option value table
*
* @var string
*/
protected $_optionValueTable;
/**
* @var \Magento\Framework\App\ResourceConnection
*/
protected $_coreResource;
/**
* @var \Magento\Store\Model\StoreManagerInterface
*/
protected $_storeManager;
/**
* @param \Magento\Framework\Data\Collection\EntityFactory $entityFactory
* @param \Psr\Log\LoggerInterface $logger
* @param \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy
* @param \Magento\Framework\Event\ManagerInterface $eventManager
* @param \Magento\Framework\App\ResourceConnection $coreResource
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param mixed $connection
* @param \Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource
* @codeCoverageIgnore
*/
public function __construct(
\Magento\Framework\Data\Collection\EntityFactory $entityFactory,
\Psr\Log\LoggerInterface $logger,
\Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy,
\Magento\Framework\Event\ManagerInterface $eventManager,
\Magento\Framework\App\ResourceConnection $coreResource,
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Framework\DB\Adapter\AdapterInterface $connection = null,
\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null
) {
$this->_storeManager = $storeManager;
$this->_coreResource = $coreResource;
parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource);
}
/**
* Resource initialization
*
* @return void
*/
protected function _construct()
{
$this->_init(
\Magento\Eav\Model\Entity\Attribute\Option::class,
\Magento\Eav\Model\ResourceModel\Entity\Attribute\Option::class
);
$this->_optionValueTable = $this->_coreResource->getTableName('eav_attribute_option_value');
}
/**
* Set attribute filter
*
* @param int $setId
* @return $this
* @codeCoverageIgnore
*/
public function setAttributeFilter($setId)
{
return $this->addFieldToFilter('main_table.attribute_id', $setId);
}
/**
* Add store filter to collection
*
* @param int $storeId
* @param bool $useDefaultValue
* @return $this
*/
public function setStoreFilter($storeId = null, $useDefaultValue = true)
{
if ($storeId === null) {
$storeId = $this->_storeManager->getStore()->getId();
}
$connection = $this->getConnection();
$joinCondition = $connection->quoteInto('tsv.option_id = main_table.option_id AND tsv.store_id = ?', $storeId);
if ($useDefaultValue) {
$this->getSelect()->join(
['tdv' => $this->_optionValueTable],
'tdv.option_id = main_table.option_id',
['default_value' => 'value']
)->joinLeft(
['tsv' => $this->_optionValueTable],
$joinCondition,
[
'store_default_value' => 'value',
'value' => $connection->getCheckSql('tsv.value_id > 0', 'tsv.value', 'tdv.value')
]
)->where(
'tdv.store_id = ?',
0
);
} else {
$this->getSelect()->joinLeft(
['tsv' => $this->_optionValueTable],
$joinCondition,
'value'
)->where(
'tsv.store_id = ?',
$storeId
);
}
$this->setOrder('value', self::SORT_ORDER_ASC);
return $this;
}
/**
* Add option id(s) filter to collection
*
* @param int|array $optionId
* @return $this
* @codeCoverageIgnore
*/
public function setIdFilter($optionId)
{
return $this->addFieldToFilter('main_table.option_id', ['in' => $optionId]);
}
/**
* Convert collection items to select options array
*
* @param string $valueKey
* @return array
*/
public function toOptionArray($valueKey = 'value')
{
return $this->_toOptionArray('option_id', $valueKey);
}
/**
* Set order by position or alphabetically by values in admin
*
* @param string $dir direction
* @param bool $sortAlpha sort alphabetically by values in admin
* @return $this
*/
public function setPositionOrder($dir = self::SORT_ORDER_ASC, $sortAlpha = false)
{
$this->setOrder('main_table.sort_order', $dir);
// sort alphabetically by values in admin
if ($sortAlpha) {
$this->getSelect()->joinLeft(
['sort_alpha_value' => $this->_optionValueTable],
'sort_alpha_value.option_id = main_table.option_id AND sort_alpha_value.store_id = 0',
['value']
);
$this->setOrder('sort_alpha_value.value', $dir);
}
return $this;
}
}