Created
July 23, 2015 21:01
-
-
Save mcjwsk/a9ec497b994a4e8b93d4 to your computer and use it in GitHub Desktop.
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
$installer->addAttribute('catalog_product', "shirt_size", array( | |
'type' => 'int', | |
'input' => 'select', | |
'label' => 'Shirt Size', | |
'sort_order' => 1000, | |
'required' => false, | |
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE, | |
'backend' => 'eav/entity_attribute_backend_array', | |
'option' => array ( | |
'values' => array( | |
0 => 'Small', | |
1 => 'Medium', | |
2 => 'Large', | |
) | |
), | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment