Magento 2-eavエンティティの属性オプション値を取得する方法


18

eavエンティティの属性オプション値を取得するにはどうすればよいですか?
magento 1.xのみの解決策を見つけましたが、M2はわかりません。
M1:

$attr = Mage::getResourceModel('eav/entity_attribute_collection')->setCodeFilter('specialty')->getData()[0];
$attributeModel = Mage::getModel('eav/entity_attribute')->load($attr['attribute_id']);
$src =  $attributeModel->getSource()->getAllOptions();

誰もが知っています、ステップバイステップで教えてください、ありがとう!

回答:


55

次の\Magento\Eav\Model\Configようなインスタンスをクラスのコンストラクタに追加できます。

protected $eavConfig;
public function __construct(
    ...
    \Magento\Eav\Model\Config $eavConfig,
    ...
){
    ...
    $this->eavConfig = $eavConfig;
    ...
}

それをクラスで使用できます

$attribute = $this->eavConfig->getAttribute('catalog_product', 'attribute_code_here');
$options = $attribute->getSource()->getAllOptions();

「値」と「ラベル」を取得する方法は?
MrTo・ケイン

1
結果がどのように見えるかを確認してください。Varダンプか何か。
マリウス

array(2){[0] => array(2){["value"] => int(1)["label"] => object(Magento \ Framework \ Phrase)#1504(2){["text ":" Magento \ Framework \ Phrase ":private] => string(7)" Enabled "[" arguments ":" Magento \ Framework \ Phrase ":private] => array(0){}}} [1] = > array(2){["value"] => int(2)["label"] => object(Magento \ Framework \ Phrase)#1494(2){["text": "Magento \ Framework \ Phrase" :private] => string(8) "Disabled" ["arguments": "Magento \ Framework \ Phrase":private] => array(0){}}}}
MrTo-Kane

12
小さいが重要な発言:可能な場合は、モジュールサービスレイヤーを使用する方が良い eav属性の場合は\Magento\Eav\Api\Attribute RepositoryInterfaceです。@apiとしてマークされていないものはすべてプライベートとして扱われ、マイナーリリースで削除できます。
カンディ

5
@KAndy良い発言。それを答えとして書くことができます。私よりもはるかに良いと思います。
マリウス

5

ブロックファイル内の以下のコードを呼び出すだけです。

<?php
namespace Vendor\Package\Block;

class Blockname extends \Magento\Framework\View\Element\Template
{
    protected $_productAttributeRepository;

    public function __construct(        
        \Magento\Framework\View\Element\Template\Context $context,   
        \Magento\Catalog\Model\Product\Attribute\Repository $productAttributeRepository,
        array $data = [] 
    ){        
        parent::__construct($context,$data);
        $this->_productAttributeRepository = $productAttributeRepository;
    } 

    public function getAllBrand(){
        $manufacturerOptions = $this->_productAttributeRepository->get('manufacturer')->getOptions();       
        $values = array();
        foreach ($manufacturerOptions as $manufacturerOption) { 
           //$manufacturerOption->getValue();  // Value
            $values[] = $manufacturerOption->getLabel();  // Label
        }
        return $values;
    }  
}

phtmlファイル内で呼び出し、

<div class="manufacturer-name">
      <?php $getOptionValue = $this->getAllBrand();?>
      <?php foreach($getOptionValue as $value){ ?>
           <span><?php echo $value;?></span>
      <?php } ?>
</div>

ありがとう。


これはswatch、などの入力を使用するように設定された属性のオプションを返しませんcolor。このgetOptions()メソッドは、「ドロップダウン」などの特定の入力タイプにハードコーディングされているため、スウォッチ入力オプションはスキップされます。他の誰かがそれに出くわした場合は、ただ気をつけてください。
thaddeusmt

こんにちは、@ Rakesh、管理者以外はこれをどのように達成しますか。グリッド列フィルターにこれらのオプション値が必要です。教えてください。
ラビソニ

5

次のコードを使用して、すべての属性オプションを取得します。

function getExistingOptions( $object_Manager ) {

$eavConfig = $object_Manager->get('\Magento\Eav\Model\Config');
$attribute = $eavConfig->getAttribute('catalog_product', 'color');
$options = $attribute->getSource()->getAllOptions();

$optionsExists = array();

foreach($options as $option) {
    $optionsExists[] = $option['label'];
}

return $optionsExists;

 }

詳細な説明については、ここをクリックしてください。 http://www.pearlbells.co.uk/code-snippets/get-magento-attribute-options-programmatically/


4

Magento\Eav\Api\AttributeRepositoryInterface@marius answerのコメントで@kandyによって提案されたApiサービスレイヤーを使用します。

次のようにコンストラクタにサービスデータメンバーを挿入します。

protected $eavAttributeRepository;
public function __construct(
    ...
    \Magento\Eav\Api\AttributeRepositoryInterface $eavAttributeRepositoryInterface,
    ...
){
    ...
    $this->eavAttributeRepository = $eavAttributeRepositoryInterface;
    ...
}

そして、これを使用して属性を取得できます。

$attribute = $this->eavAttributeRepository->get(
    \Magento\Catalog\Model\Product::ENTITY,
    'attribute_code_here'
);
// var_dump($attribute->getData()); 

属性オプション値の配列を取得するには、これを使用します。

$options = $attribute->getSource()->getAllOptions();

2

\Magento\Catalog\Model\Product\Attribute\Repositoryコンストラクタに(ブロック、ヘルパークラス、またはその他の場所で)のインスタンスを挿入します。

/**
 * @var \Magento\Catalog\Model\Product\Attribute\Repository $_productAttributeRepository
 */
protected $_productAttributeRepository;

/**
 * ...
 * @param \Magento\Catalog\Model\Product\Attribute\Repository $productAttributeRepository
 * ...
 */
public function __construct(
    ...
    \Magento\Catalog\Model\Product\Attribute\Repository $productAttributeRepository,
    ...
) {
    ...
    $this->_productAttributeRepository = $productAttributeRepository;
    ...
}

次に、クラスでメソッドを作成して、コードで属性を取得します。

/**
 * Get single product attribute data 
 *
 * @return Magento\Catalog\Api\Data\ProductAttributeInterface
 */
public function getProductAttributeByCode($code)
{
    $attribute = $this->_productAttributeRepository->get($code);
    return $attribute;
}

次に、このメソッドを.phtmlファイル内などで呼び出すことができます

$attrTest = $block->getProductAttributeByCode('test');

次に、属性オブジェクトで呼び出しを行うことができます、例えば

  1. オプションを取得: $attribute->getOptions()
  2. 各店舗のフロントエンドラベルを取得します。 $attrTest->getFrontendLabels()
  3. データ配列をデバッグします。 echo '> ' . print_r($attrTest->debug(), true);

debug:Array([attribute_id] => 274 [entity_type_id] => 4 [attribute_code] => product_manual_download_label [backend_type] => varchar [frontend_input] => text [frontend_label] => Product Manual Download Label [is_required] => 0 [ is_user_defined] => 1 [default_value] =>製品マニュアルのダウンロード[is_unique] => 0 [is_global] => 0 [is_visible] => 1 [is_searchable] => 0 [is_filterable] => 0 [is_comparable] => 0 [ is_visible_on_front] => 0 [is_html_allowed_on_front] => 1 [is_used_for_price_rules] => 0 [is_filterable_in_search] => 0 [used_in_product_listing] => 0 [used_for_sort_by] => 0 [is_visible_in_advanced_search] => 0 [is_visible_in_advanced_search] => 00 [is_wysiwyg_enabled] => 0 [is_used_for_promo_rules] => 0 [is_required_in_admin_store] => 0 [is_used_in_grid] => 1 [is_visible_in_grid] => 1 [is_filterable_in_grid] => 1 [search_weight] => 1)


1
これは非常にうまく答えを説明する
domdambrogia

0
   <?php
      /* to load the Product */
  $_product = $block->getProduct();
  $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
  $attributeSet = $objectManager- 
   >create('Magento\Eav\Api\AttributeSetRepositoryInterface');
  $attributeSetRepository = $attributeSet->get($_product->getAttributeSetId());
  $_attributeValue  = $attributeSetRepository->getAttributeSetName();  
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.