Magento Coupon Code Validation – How to Validate

couponcoupon-codesvalidation

In which file/class, Magento checks if the coupon code is already used by the logged in customer or not?

Best Answer

It is in app/code/core/Mage/SalesRule/Model/Validator.php

Also you can see the function in http://freegento.com/doc/d0/d40/_validator_8php-source.html

See the function process() on line 00106
Related Topic