3

Here is my function for calling product attribute collection I have already get product attributes for the product's which are enabled but I am having issue in filtering them according to their own visibility i.e I want only those product attributes collection whose status is set visible from admin....

class ProductList extends \Magento\Framework\View\Element\Template
{
protected $_attributeFactory;

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

         ){
    parent::__construct($context);
    $this->_attributeFactory = $attributeFactory;
    }

public function getallattributes()
{
    $arr = [];
    $attributeInfo = $this->_attributeFactory->getCollection()->addFieldToFilter(\Magento\Eav\Model\Entity\Attribute\Set::KEY_ENTITY_TYPE_ID, 4);

   foreach($attributeInfo as $attributes)
   {
        $attributeId = $attributes->getAttributeId();
        // You can get all fields of attribute here

         $arr[$attributes->getAttributeId()] = $attributes->getFrontendLabel();


   }
   return $arr;
 }                                                                    } 
Kirmal Brar
  • 397
  • 1
  • 2
  • 17

3 Answers3

5

No tested but it will do job for you

$attributeInfo = $this->_attributeFactory->getCollection()
                 ->addFieldToFilter(\Magento\Eav\Model\Entity\Attribute\Set::KEY_ENTITY_TYPE_ID, 4)
                 ->addFieldToFilter('is_visible_on_front',1);
Qaisar Satti
  • 2,742
  • 2
  • 18
  • 36
1

To get All product attributes you need to use inject class

app/code/Mendor/Mymodule/Model/Attributes.php

 public function __construct(Context $context,   
    \Magento\Eav\Model\ResourceModel\Entity\Attribute\Collection $coll
    ){
 $this->_coll=$coll;
        parent::__construct($context);
}

 public function getAllAttributes()
    {
        $this->_coll->addFieldToFilter(\Magento\Eav\Model\Entity\Attribute\Set::KEY_ENTITY_TYPE_ID, 4);
        $attrAll = $this->_coll->load()->getItems();
 echo '<pre>'; var_dump($attrAll);'</pre>';
        exit;
}
Arshad Syed
  • 403
  • 4
  • 9
0

You can do it using the following function:

 public function getallattributes()
    {
        $arr = [];
        $attributeInfo = $this->_attributeFactory->getCollection()- 
        >addFieldToFilter(\Magento\Eav\Model\Entity\Attribute\Set::
        KEY_ENTITY_TYPE_I D, 4);
    
        foreach($attributeInfo as $attributes)
        {
            $attributeId = $attributes->getAttributeId();
            // You can get all fields of attribute here
            if($attributes->getIsVisibleOnFront()){
                $arr[$attributes->getAttributeId()] = $attributes 
                     >getFrontendLabel();
            }
        }
        return $arr;
    }
Adrian Mole
  • 49,934
  • 160
  • 51
  • 83