Book Image

Magento 1.3: PHP Developer's Guide

By : Jamie Huskisson
Book Image

Magento 1.3: PHP Developer's Guide

By: Jamie Huskisson

Overview of this book

<p>Magento is the most powerful e-commerce solution around and has gained popularity in a short period of time. You can create and manage online stores using the extensive suite of powerful tools it offers. However, because of its powerful features, developing with Magento can be easier said than done.<br /><br />This book will show you how to develop better and do more with the Magento. You will be able to extend and customize modules for the Magento system without editing the core system code. It will show you how to create both basic and advanced functionality modules for your store and help you turn your ideas for extending Magento into reality by building modules from scratch.<br /><br />This book starts by walking you through the server requirements for installing Magento making sure Magneto's installation and upgrade process can fit into your workflow and suit your hosting environment setup. Then it runs through the architecture behind Magento's system, covering the core file structure and how the template system works. You'll also learn how to build a basic shipping module, payment module, and a brand management module for Magento. As you delve deeper into the book you will learn how to integrate your favorite CMS into Magento for data portability. <br /><br />By the end of the book you will be able to take your basic knowledge of Magento and turn it into something advanced that will help you develop turn your ideas for extending Magento into reality.</p>
Table of Contents (16 chapters)
Magento 1.3: PHP Developer's Guide
Credits
About the Author
About the Reviewers
Preface
2
Installing/Upgrading Magento and Preparing for Development
6
Building a Basic Featured Products Module
Index

Complete list of available resources and methods


The following is a complete list of all the available resources, APIs, and methods in the Magento Core API for quick reference.

Note

For full reference with example code for each of the APIs, we can visit: http://www.magentocommerce.com/wiki/doc/webservices-api/api online.

Customer methods

For handling of customer information in Magento's database, the following methods are available:

Customer API

Resource name: customer

Customer Groups API

Resource name: customer_group

customer.listRetrieve customers

customer.createCreate customer

customer.infoRetrieve customer data

customer.updateUpdate customer data

customer.deleteDelete customer

customer_group.listRetrieve customer's groups

Customer Address API

Resource name: customer_address

 

customer_address.list—Retrieve customer addresses

customer_address.create—Create customer address

customer_address.info—Retrieve customer address

customer_address.update—Update customer address

customer_address...