我想在store_id
下面的方法
vendor/magento/module-cms/Model/RosourceModel/AbstractCollection.php
protected function joinStoreRelationTable($tableName, $linkField)
{
if ($this->getFilter('store'))
{
// Here i want store_id ;
}
}
因为我想得到我的自定义集合,并希望在上面的方法中分配网格(这是UI的概念) - Magento 2.1 enter image description here
答案 0 :(得分:0)
检查您将了解的相同功能
print_r($this->getFilter('store')->getData());
Array
(
[field] => store
[value] => Array
(
[in] => Array
(
[eq] => 1
)
)
[type] => public
)