About: Jermy

Recent Posts by Jermy

Writing a Magento Extension – part2

On this part, we will make the text “Hello World” appear inside the Magento design. For this, go to app/code/local/Engineering/Helloworld/controllers/IndexController.php and change its code to following: <?php class Engineering_Helloworld_IndexController extends Mage_Core_Controller_Front_Action { public function indexAction() { $this->loadLayout(); $this->renderLayout(); } } A short explanation: When calling to $this->loadLayout(); Magento will go to “app/design/myinterface/mytheme/layout”...
Read more

Writing a Magento Extension – part1

In this tutorial we will create a Magento extension step by step. our extension will print “Hello World” to the screen. Go to “app/code/local” and create a new folder. name it “Packagename” – the “Packagename” is likely to be your company name – this folder will serve all the extensions that will...
Read more

Recent Comments by Jermy

    No comments by Jermy yet.