Magento 2 için bir kurulum komut dosyası oluştururken, tip ve giriş bölümleri için hangi değerler mevcuttur eavSetup->addAttribute()
? Veya nereden öğrenebilirim?
$eavSetup->addAttribute(
\Magento\Catalog\Model\Product::ENTITY,
'some_attr',
[
'type' => '',
'backend' => '',
'frontend' => '',
'label' => 'Test Attribute',
'input' => '',
'class' => '',
'source' => '',
'global' => \Magento\Catalog\Model\Resource\Eav\Attribute::SCOPE_GLOBAL,
'visible' => true,
'required' => false,
'user_defined' => false,
'default' => 0,
'searchable' => false,
'filterable' => false,
'comparable' => false,
'visible_on_front' => false,
'used_in_product_listing' => true,
'unique' => false,
'apply_to' => ''
]
);