1 (edited by StevenBullen 2007-12-07 08:20)

Topic: Extension

First I understand that your not near release date.

I was just curious if anyone has made a very simple extension that I could possibly add to Pun 1.3 latest SVN Demo.

No problem if this is not possible yet. tongue

Re: Extension

I have big_smile

I made this to remove the annoying stuff like the query debug table and the alert from the hotfix.

<extension engine="1.0">
    <id>test</id>
    <title>RemoveAnnoying</title>
    <version>0.2</version>
    <description>This removes annoying crap</description>
    <author>Elbekko</author>
    <maxtestedon>1.3 SVN</maxtestedon>
    <minversion>1.3 SVN</minversion>
    <hooks>
        <hook id="hd_template_loaded"><![CDATA[$tpl_main = str_replace(array('<!-- pun_debug -->', '<!-- pun_alert -->'), '', $tpl_main);]]></hook>
    </hooks>
</extension>

Save it as manifest.xml in a folder called 'test'.

Might need some tweaking to work with the latest extension installer.

Re: Extension

Cheers I will try it out this evening when I finish work.