Created
August 3, 2014 15:15
-
-
Save antoinekociuba/14ecef381fb6da59afdf to your computer and use it in GitHub Desktop.
Magento Product Attribute Sets installer script.
This file contains 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 | |
/** | |
* Product Attribute Sets Installer | |
*/ | |
/* @var $installer Mage_Catalog_Model_Resource_Setup */ | |
$installer = $this; | |
// Default attribute set | |
$defaultAttributeSetId = $installer->getAttributeSetId(Mage_Catalog_Model_Product::ENTITY, 'Default'); | |
// Entity type id | |
$entityTypeId = $installer->getEntityTypeId(Mage_Catalog_Model_Product::ENTITY); | |
// New attribute sets | |
$attributeSetsName = array( | |
'New Attribute Set 1', | |
'New Attribute Set 2' | |
); | |
foreach ($attributeSetsName as $attributeSetName) { | |
$model = Mage::getModel('eav/entity_attribute_set')->setEntityTypeId($entityTypeId); | |
$model->setAttributeSetName($attributeSetName); | |
try { | |
if ($model->validate()) { | |
$model->save(); | |
$model->initFromSkeleton($defaultAttributeSetId); | |
$model->save(); | |
} | |
} catch (Exception $e) { | |
Mage::logException($e); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment