Skip to content

Instantly share code, notes, and snippets.

@jakemac53
Created October 13, 2011 15:59
Show Gist options
  • Save jakemac53/1284623 to your computer and use it in GitHub Desktop.
Save jakemac53/1284623 to your computer and use it in GitHub Desktop.
Backwards compatible plugin install file
<?xml version="1.0" encoding="utf-8"?>
<extension version="1.6.0" client="site" type="plugin" group="content" method="upgrade">
<name>Google Maps</name>
<author>Jacob MacDonald</author>
<creationDate>June 2010</creationDate>
<copyright></copyright>
<license>GNU/GPL</license>
<authorEmail>jake@yourstrategicedge.com</authorEmail>
<authorUrl>www.jacobmacdonald.com</authorUrl>
<version>2.0</version>
<description>Embed simple google maps!</description>
<files>
<filename plugin="googlemaps">googlemaps.php</filename>
</files>
<config>
<fields name="params">
<fieldset name="basic" label="basic">
<field name="address" type="text" default="" label="address" description="address" />
<field name="width" type="text" default="450" label="width" description="width" />
<field name="height" type="text" default="350" label="height" description="height" />
</fieldset>
</fields>
</config>
</extension>
<install version="1.5" type="plugin" group="content" method="upgrade">
<name>Google Maps</name>
<author>Jacob MacDonald</author>
<creationDate>June 2010</creationDate>
<copyright></copyright>
<license>GNU/GPL</license>
<authorEmail>jake@yourstrategicedge.com</authorEmail>
<authorUrl>www.jacobmacdonald.com</authorUrl>
<version>1.0</version>
<description>Embed simple google maps!</description>
<files>
<filename plugin="googlemaps">googlemaps.php</filename>
</files>
<params>
<param name="address" type="text" default="" label="address" description="address" />
<param name="width" type="text" default="450" label="width" description="width" />
<param name="height" type="text" default="350" label="height" description="height" />
</params>
</install>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment