Book Image

Getting Started with Magento Extension Development

By : Branko Ajzele
Book Image

Getting Started with Magento Extension Development

By: Branko Ajzele

Overview of this book

Modules, are a group of php and xml files meant to extend the system with new functionality, or override core system behavior. Most of the base Magento system is built using the module system, so you can see why they are an important feature for this rich open-source e-commerce solutions. This book explores key module development techniques and teaches you to modify, understand and structure your modules making it easy for you to get a strong foundation for clean and unobtrusive Magento module development. Getting Started with Magento Extension Development is a practical, hands-on guide to building Magento modules from scratch. This book provides an in depth introduction and helps you discover features such as; blocks, controllers, models, configuration files, and other crucial elements which contribute to the Magento architecture. This book introduces the you to real-world modules and helps provide a strong foundation which you need to become a professional Magento module developer. The book further explores best practices and tips and tricks offering you the ultimate go to guide. Getting Started with Magento Extension Development focuses on three areas. First you are guided through the entire Magento structure, where each important directory or file is explored in detail. Then the essence of the module structure and development is explained through the detailed coverage of models, blocks, controllers, configuration, and other files that manifest a single module. Finally, a detailed set of instructions is given for building four real-world modules, including a payment and shipping module.
Table of Contents (13 chapters)
Getting Started with Magento Extension Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Packaging your extension


The first step in publishing your extension is to package and upload it to the Magento Connect marketplace. For the purpose of packaging, we will choose our Foggyline_Stripe extension that we have in Chapter 5, Building the Extension – Payment.

Packaging an extension in Magento is done directly from its administration panel, as described in the following steps:

  1. Log in to your Magento administration panel.

  2. From the administration panel, navigate to System | Magento Connect | Package Extensions. This will take you to the New Extension page, as shown in the following screenshot:

  3. The Create Extension Package area of the New Extension page is made up of the following six sections:

    • Package info

    • Release info

    • Authors

    • Dependencies

    • Contents

    • Load Local Package

    We start off by filling the first opened section, the Package info section, as described in the following list, where most of the fields are required:

    • Name is a required field. It is a good practice to keep the name as a combination...