Showing posts with label get all coupons in magento. Show all posts
Showing posts with label get all coupons in magento. Show all posts

Monday, 22 July 2013

Magneto Get All Coupon code and rule in cart page


 Magento Fetch all coupons id,name,etc..


$rulesCollection = Mage::getModel('salesrule/rule')->getCollection();
print_r($rulesCollection);
                    foreach($rulesCollection as $rule) {
                              echo $coupon = $rule->getName();
                              echo $coupon = $rule->getIsActive();
                           }