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 plug-ins


The adjustments to the XML files for the plug-ins are very similar. Open the /plugins/content/reviews.xml file and make the following highlighted changes:

<?xml version="1.0" encoding="utf-8"?>
<install version="1.5" type="plugin" group="content">
<name>Content - Restaurant Review Links</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>Searches for titles of restaurants in articles and turns them into review links.</description>
<files>
<filename plugin="reviews">reviews.php</filename>
</files>

<params>
<param name="linkcode" type="textarea" default="" rows="5" cols="40" label="Custom Link Code" description...