Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
attribute_set_for_search_rollback.php
Go to the documentation of this file.
1 <?php
7 
9  'attribute_set_1_for_search',
10  'attribute_set_2_for_search',
11  'attribute_set_3_for_search',
12  'attribute_set_4_for_search',
13 ];
14 
15 foreach ($attributeSetData as $attributeSetName) {
17  $attributeSet = $objectManager->create(\Magento\Eav\Model\Entity\Attribute\Set::class)
18  ->load($attributeSetName, 'attribute_set_name');
19  if ($attributeSet->getId()) {
20  $attributeSet->delete();
21  }
22 }