Book Image

Learning Joomla! 1.5 Extension Development

Book Image

Learning Joomla! 1.5 Extension Development

Overview of this book

Table of Contents (17 chapters)
Learning Joomla! 1.5 Extension Development
Credits
About the Author
About the Reviewer
Preface

Packaging the module


For our module, take the existing mod_reviews.xml file and add the following highlighted code:

<?xml version="1.0" encoding="utf-8"?>
<install type="module" version="1.5">
<name>Restaurant Reviews</name>
<author>Sumptuous Software</author>
<creationDate>August 2008</creationDate>
<copyright>(C) 2008</copyright>
<license>MIT</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.packtpub.com</authorUrl>
<version>1.0</version>
<description>A module for promoting restaurant reviews.</description>
<files>
<filename module="mod_reviews">mod_reviews.php</filename>
<filename>helper.php</filename>
<filename>mod_reviews.xml</filename>
<folder>tmpl</folder>
</files>

<params>
<param name="random" type="radio" default="0" label="Randomize" description="Show random reviews"&gt...