Skip to content

Instantly share code, notes, and snippets.

@mcjwsk
Created July 23, 2015 21:01
Show Gist options
  • Save mcjwsk/a9ec497b994a4e8b93d4 to your computer and use it in GitHub Desktop.
Save mcjwsk/a9ec497b994a4e8b93d4 to your computer and use it in GitHub Desktop.
$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