The implementation of a “Tier Models” is an important part of an MVC framework. It represents the details of your application and handles data in applications. Magento Models play an even greater role, because they usually contain the “Business Logic”.
Tutorials
Creating Custom Magento URL Rewrites
We can create modules in Magento and can create fancy URL for our module without using .htaccess rewrites. It’s very easy, Magento has very easy way for URL rewrite using config.xml.
Generate CSV file in Magento
Magento provides a functionality to directly export the content from the grids in admin section like Sales, Products etc in the form of CSV or XML. But sometimes you need to generate a CSV with the custom data. Magento has already a nice class for it, it can be found at lib/Varien/File file name Csv.php. This class […]
How to Handle AJAX Requests in Magento
Sometimes it’s very troublesome to implement Ajax with Magento. Here in this post , I have explained few simple step to to implement Ajax with Magento.
How to Override Magento Admin Controller
If you’re looking for solution to customizing Magento admin core functionality or want to change core functionality of any controller. Don’t worry, it’s really very easy. You just need to override controller action with your controller action. In this tutorial, I have explained how to override Magento admin controllers.