Events and observers Overview Events Dispatching events Creating new events Event areas Observers Creating an observer Subscribing to events Recommended Reading Overview Working with events and observers is one of the main ways to extend Magento functionality. The events and...
Day: September 27, 2016
magento
Getting list of all Manufacturers and corresponding Manufacturer ID
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'manufacturer'); foreach ( $attribute->getSource()->getAllOptions(true, true) as $option){ $attributeArray] = $option; } foreach($attributeArray as $key=>$val){ echo $val; }
Mac pro
Module Development Series – Magento Admin Module
n this tutorial, we are going to see all the different form fields we can use in admin forms. Magento has many different type of field available by default, so lets see the syntax of using each of these fields....