7

属性が割り当てられているセットから属性を削除するには、関数またはコードが必要です。属性を割り当てる機能を知っています:

$setup->addAttributeToSet($entityTypeId, $setId, $groupId, $attributeId, $sortOrder=null)

または属性を削除するには:

$setup->removeAttribute($entityTypeId, $code)

ただし、属性は削除しないでください。AttributeSet 'Default' (グループ 'General') で属性を表示できなくなっている必要があります。

次のような関数が見つかりません。

removeAttributeFromAttributeSet()

またはsth。そのように

4

4 に答える 4

9

セットアップスクリプト内でこのコードを試すことができます

<?php
/** @var $this Mage_Eav_Model_Entity_Setup */
$this->startSetup();

$this->deleteTableRow(
    'eav/entity_attribute', 
    'attribute_id', 
    $this->getAttributeId('catalog_product', 'attribute_code_here'), 
    'attribute_set_id', 
    $this->getAttributeSetId('catalog_product', 'Default')
);

$this->endSetup();
于 2012-07-09T18:01:12.870 に答える
0

// 属性を完全に削除します。

$Attributes = array('accessories_size','accessories_type','apparel_type','author_artist','bag_luggage_type','bedding_pattern','bed_bath_type','books_music_type','camera_megapixels',
'camera_type','coater','color','colors','cost','decor_type','ebizmarts_mark_visited','electronic_type','featured','fit','format','frame_style','gender','gendered','genre','homeware_style',
'home_decor_type','impressions','is_sold','jewelry_type','length','lens_type','luggage_size','luggage_style','luggage_travel_style','make','manufacturer','material','model','necklace_length',
'occasion','perfector','sample_item_1','sheet_size','shoe_size','shoe_type','size','sleeve_length','style');

$entityType = 'catalog_product';

foreach($Attributes as $index => $attrCode){

        $attributeId = Mage::getResourceModel('eav/entity_attribute')->getIdByCode($entityType,$attrCode);   // it return false when attribute not exist.

        if($attributeId){
            Mage::getModel('catalog/product_attribute_api')->remove($attributeId);          
        }
}
于 2016-02-04T09:44:57.327 に答える
0

これは私が使用する完全なコードであり、動作します:

$installer = $this;
$installer->startSetup();

$attributeType = 'catalog_product';

$attribute_set_name = 'Default';

$attributeCode='my_attribute';

$setId = $installer->getAttributeSetId('catalog_product', $attribute_set_name);

$attributeId=$installer->getAttributeId($attributeType, $attributeCode);

$installer->deleteTableRow('eav/entity_attribute', 'attribute_id', $attributeId, 'attribute_set_id', $setId);

$installer->endSetup();
于 2012-07-10T06:27:32.663 に答える