Quote:
Originally Posted by chatbum
my bad
*off-topic: how would I make a product also install a plugin?*
|
Just before:
Add this for custom plugins and templates:
Code:
<plugins>
<plugin active="1">
<title>Plugin Title</title>
<hookname>hook_name</hookname>
<phpcode><![CDATA[
//Active Plugin Code Here
]]>
</phpcode>
</plugin>
<plugin active="0">
<title>Plugin2 Title</title>
<hookname>hook_name</hookname>
<phpcode><![CDATA[
//Inactive Plugin2 Code Here
]]>
</phpcode>
</plugin>
</plugins>
<templates>
<template name="template_name1" templatetype="template" date="1234567890" username="Aurous" version="3.5.4"><![CDATA[
<!-- Insert Template Here -->
]]>
</template>
<template name="template_name2" templatetype="template" date="1234567890" username="Aurous" version="3.5.4"><![CDATA[
<!-- Insert Template Here -->
]]>
</template>
</templates>
Hope this helps.