Title: Custom Page Template v1.0

Author: John Briggs

Description:
This modification provides a custom page script for adding extra content to a new page.

Copyright:  2006 John Briggs. All rights reserved.

Compatability: XMB 1.9.11 Final

Install Note: Before adding this modification to your forum you should back up all files related to this mod.

License Note: This modification is released under the GPL License. A copy is provided with this software.

Author Note:
You downloaded this modification from XMBGarage.com, the #1 source for XMB related downloads.
Please visit http://www.xmbgarage.com/ for support.
============================================================================================================================

Instructions:

1. Rename download.php to the name you would like for the new page.

2. Edit download.php and replace all instances of the word "download" with the new name.

3. Upload the file to your server.

4. Go to Administration Panel -> Templates and create a New template with the same name.

5. Enter any custom HTML in the template.  Ours looks like this:

<table cellspacing="0" cellpadding="0" border="0" width="$tablewidth" align="center">
<tr>
<td bgcolor="$bordercolor">
<table border="0" cellspacing="{$THEME['borderwidth']}" cellpadding="$tablespace" width="100%">
<tr>
<td class="category"><font color="$cattext"><strong>Download</strong></font></td>
</tr>
<tr>
<td class="tablerow" bgcolor="$altbg1">

<!-- Download Links go Here -->

</td>
</tr>
</table>
</td>
</tr>
</table>


6. Edit config.php in the section called Plugin Settings.  Ours looks like this:

    // Start Plugin code for plugin #1
    $plugname[$i]    = 'Download';
    $plugurl[$i]     = 'download.php';
    $plugadmin[$i]   = false;
    $plugimg[$i]     = '/images/davis/top_bbrules.gif';
    $i++;
    // End plugin code.