Last active
December 28, 2021 21:06
-
-
Save bh-ref/2a788f206f8c3d833e43 to your computer and use it in GitHub Desktop.
Remove/Delete Product Attribute Options in Magento 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Vendor\ModuleName\Options; | |
use Magento\Eav\Setup\EavSetupFactory; | |
use Magento\Framework\Setup\ModuleDataSetupInterface; | |
use Magento\Catalog\Model\ResourceModel\Eav\AttributeFactory; | |
class RemoveOptions | |
{ | |
/** | |
* EAV setup factory | |
* | |
* @var EavSetupFactory | |
*/ | |
protected $eavSetupFactory; | |
/** | |
* EAV product attribute factory | |
* | |
* @var AttributeFactory | |
*/ | |
protected $attributeFactory; | |
/** | |
* Init | |
* | |
* @param EavSetupFactory $eavSetupFactory | |
* @param AttributeFactory $attributeFactory | |
*/ | |
public function __construct( | |
EavSetupFactory $eavSetupFactory, | |
AttributeFactory $attributeFactory | |
) | |
{ | |
$this->eavSetupFactory = $eavSetupFactory; | |
$this->attributeFactory = $attributeFactory; | |
} | |
/** | |
* delete options from an attribute | |
* | |
* @param ModuleDataSetupInterface $setup | |
*/ | |
public function deleteOptions(ModuleDataSetupInterface $setup) | |
{ | |
/** @var \Magento\Eav\Setup\EavSetup $eavSetup */ | |
$eavSetup = $this->eavSetupFactory->create(['setup' => $setup]); | |
$entityTypeId = $eavSetup->getEntityTypeId(\Magento\Catalog\Api\Data\ProductAttributeInterface::ENTITY_TYPE_CODE); | |
$attributeCode = 'my_already_existing_attribute'; | |
// IMPORTANT: | |
// use $this->attributeFactory->create() before loading the attribute, | |
// or else the options you want to delete will be cached and you cannot | |
// delete other options from a second attribute in the same request | |
$attribute = $this->attributeFactory->create()->loadByCode($entityTypeId, $attributeCode); | |
$options = $attribute->getOptions(); | |
$optionsToRemove = []; | |
foreach($options as $option) | |
{ | |
if ($option['value']) | |
{ | |
$optionsToRemove['delete'][$option['value']] = true; | |
$optionsToRemove['value'][$option['value']] = true; | |
} | |
} | |
$eavSetup->addAttributeOption($optionsToRemove); | |
} | |
} |
This removes options only, I need to delete options' values too.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
__construct doesn't require a description.