1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-30 17:50:12 +02:00

Initial port from core to plugin, no functional changes

This commit is contained in:
bugrain
2009-01-11 02:59:10 +00:00
parent a113d8117b
commit 03fd09b3f2
9 changed files with 3182 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Id: plugin.xml,v 1.1 2009-01-11 02:59:10 bugrain Exp $ -->
<e107Plugin name="Download" version="1.0" compatibility="0.8" installRequired="true">
<author name="e107dev" url="http://e107.org"/>
<description>This plugin is a fully featured Download system</description>
<folder>download</folder>
<administration>
<configFile>download_admin.php</configFile>
<subMenuItem title="DOWLAN_29" description="" link="download_admin.php" icon="manage" />
<subMenuItem title="DOWLAN_30" description="" link="download_admin.php?create" icon="add" />
<subMenuItem title="DOWLAN_31" description="" link="download_admin.php?cat" icon="cat_settings" />
<subMenuItem title="DOWLAN_32" description="" link="download_admin.php?opt" icon="settings" />
<subMenuItem title="DOWLAN_112" description="" link="download_admin.php?limits" icon="downloads" />
<subMenuItem title="DOWLAN_128" description="" link="download_admin.php?mirror" icon="downloads" />
<icon>images/downloads_32.png</icon>
<iconSmall>images/downloads_16.png</iconSmall>
<caption>Configure Download</caption>
<installDone>Your download plugin is now installed</installDone>
</administration>
<menuLink name="Download" url="download/download.php" perm='everyone'/>
<mainPrefs>
<pref name="download_php" value="" />
<pref name="download_subsub" value="1" />
<pref name="download_incinfo" value="" />
<pref name="download_view" value="" />
<pref name="download_order" value="" />
<pref name="download_sort" value="" />
<pref name="download_reportbroken" value="0" />
<pref name="download_email" value="" />
<pref name="agree_flag" value="" /> <!-- needs download prefix? -->
<pref name="agree_text" value="" />
<pref name="download_denied" value="" />
</mainPrefs>
<management>
<install when="post" type="classFunction" file="download_management.php" class="download_management" function="download_install_post" />
<uninstall type="classFunction" file="download_management.php" class="download_management" function="download_uninstall" />
<upgrade type="classFunction" file="download_management.php" class="download_management" function="download_upgrade" />
</management>
</e107Plugin>