浏览文章

文章信息

Magento2 获取所有产品属性 10879

代码:

<?phpnamespace Aiweline\Checkout\Model\Config;


use Magento\Framework\Option\ArrayInterface;

class AttributesOptions implements ArrayInterface{

    /**     * @var \Magento\Catalog\Model\ResourceModel\Eav\Attribute     */    private $attributeFactory;

    function __construct(
        \Magento\Catalog\Model\ResourceModel\Eav\Attribute $attributeFactory    )
    {

        $this->attributeFactory = $attributeFactory;
    }

    /**     * @inheritDoc     */    public function toOptionArray()
    {
        $options = [];
        foreach ($this->getProductSizeAttribute() as $item) {
            $options[] = ['label' => $item->getData('frontend_label'), 'value' => $item->getData('attribute_id')];
        }
        return $options;
    }

    function getProductSizeAttribute()
    {
        $attributes = $this->attributeFactory->getCollection();
        $attributes->addFieldToFilter('frontend_label', [
            ['like' => '%size%'],
            ['like' => '%Size%']
        ]);
        return $attributes;
    }
}


原创