July 2015
Beginner to intermediate
260 pages
5h
English
There are two main files involved in a module configuration, config.xml and system.xml. In addition to these, module configuration is also stored in the following files:
api.xmladminhtml.xmlcache.xmlwidget.xmlwsdl.xmlwsi.xmlconvert.xmlIn this chapter, we will only focus on config.xml. Let's create our base file and break down each of the nodes:
config.xml file under our module etc/ directory.config.xml, located at app/code/local/Mdg/Giftregistry/etc/config.xml:<?xml version="1.0"> <config> <modules> <Mdg_Giftregistry> <version>0.2.0</version> </Mdg_Giftregistry> </modules> <global> <models> <mdg_giftregistry> <class>Mdg_Giftregistry_Model</class> </mdg_giftregistry> </models> ...
Read now
Unlock full access