mirror of
https://github.com/e107inc/e107.git
synced 2025-08-31 10:01:56 +02:00
* Tablerender title is now breadcrumb trail
* Added shortcodes for previously hard coded stuff and updated template * Converted shortcodes to shortcode class - real PHP, yay! * Removed 'renderplain' option - nothing else worked like this * admin: first cut of the new maintenance options * admin: started item filter form (unfinished by a long way) * admim: removed a lot of inline css classes/styles in preperation for the new admin way of doing things * Start of code tidy up, including creation of some handler classes * Fixed some bugs found along the way
This commit is contained in:
@@ -11,131 +11,150 @@
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_plugins/download/templates/download_template.php,v $
|
||||
| $Revision: 1.1 $
|
||||
| $Date: 2009-01-14 23:43:36 $
|
||||
| $Revision: 1.2 $
|
||||
| $Date: 2009-02-11 21:41:54 $
|
||||
| $Author: bugrain $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
if (!defined('e107_INIT')) { exit; }
|
||||
if (!defined("USER_WIDTH")){ define("USER_WIDTH","width:95%"); }
|
||||
|
||||
|
||||
/* set style of download image and thumbnail */
|
||||
define("DL_IMAGESTYLE","border:0px");
|
||||
|
||||
// ##### CAT TABLE --------------------------------------------------------------------------------
|
||||
if(!isset($DOWNLOAD_CAT_TABLE_PRE))
|
||||
{
|
||||
$DOWNLOAD_CAT_TABLE_PRE = "
|
||||
<div>{DOWNLOAD_CAT_MAIN_DESCRIPTION}</div>";
|
||||
}
|
||||
if(!isset($DOWNLOAD_CAT_TABLE_START))
|
||||
{
|
||||
$DOWNLOAD_CAT_TABLE_START = "
|
||||
<div style='text-align:center'>
|
||||
<table class='fborder' style='".USER_WIDTH."'>\n
|
||||
<tr>
|
||||
<td style='width:3%; text-align:center' class='fcaption'> </td>
|
||||
<td style='width:60%; text-align:center' class='fcaption'>".LAN_dl_19."</td>
|
||||
<td style='width:10%; text-align:center' class='fcaption'>".LAN_dl_20."</td>
|
||||
<td style='width:17%; text-align:center' class='fcaption'>".LAN_dl_21."</td>
|
||||
<td style='width:10%; text-align:center' class='fcaption'>".LAN_dl_77."</td>
|
||||
</tr>";
|
||||
$DOWNLOAD_CAT_TABLE_START = "
|
||||
<div style='text-align:center'>
|
||||
<table class='fborder' style='".USER_WIDTH."'>\n
|
||||
<colgroup>
|
||||
<col style='width:3%'/>
|
||||
<col style='width:60%'/>
|
||||
<col style='width:10%'/>
|
||||
<col style='width:17%'/>
|
||||
<col style='width:10%'/>
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='fcaption' colspan='2'>".LAN_dl_19."</th>
|
||||
<th class='fcaption'>".LAN_dl_20."</th>
|
||||
<th class='fcaption'>".LAN_dl_21."</th>
|
||||
<th class='fcaption'>".LAN_dl_77."</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td class='forumheader3' colspan='5'>{DOWNLOAD_CAT_NEWDOWNLOAD_TEXT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3' colspan='5'>{DOWNLOAD_CAT_SEARCH}</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>";
|
||||
}
|
||||
if(!isset($DOWNLOAD_CAT_PARENT_TABLE))
|
||||
{
|
||||
$DOWNLOAD_CAT_PARENT_TABLE = "
|
||||
<tr>
|
||||
<td colspan='5' class='forumheader' style='text-align:left; font-weight:bold;'>
|
||||
{DOWNLOAD_CAT_MAIN_ICON} {DOWNLOAD_CAT_MAIN_NAME}
|
||||
</td>
|
||||
</tr>";
|
||||
$DOWNLOAD_CAT_PARENT_TABLE = "
|
||||
<tr>
|
||||
<td class='forumheader'>
|
||||
{DOWNLOAD_CAT_MAIN_ICON}
|
||||
</td>
|
||||
<td colspan='4' class='forumheader'>
|
||||
{DOWNLOAD_CAT_MAIN_NAME}<br/>
|
||||
<span class='smalltext'>{DOWNLOAD_CAT_MAIN_DESCRIPTION}</span>
|
||||
</td>
|
||||
</tr>";
|
||||
}
|
||||
|
||||
if(!isset($DOWNLOAD_CAT_CHILD_TABLE))
|
||||
{
|
||||
$DOWNLOAD_CAT_CHILD_TABLE = "
|
||||
<tr>
|
||||
<td class='forumheader3'>
|
||||
{DOWNLOAD_CAT_SUB_ICON}
|
||||
</td>
|
||||
<td class='forumheader3'>
|
||||
{DOWNLOAD_CAT_SUB_NEW_ICON} {DOWNLOAD_CAT_SUB_NAME}<br />
|
||||
<span class='smalltext'>
|
||||
{DOWNLOAD_CAT_SUB_DESCRIPTION}
|
||||
</span>
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUB_COUNT}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUB_SIZE}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUB_DOWNLOADED}
|
||||
</td>
|
||||
</tr>
|
||||
{DOWNLOAD_CAT_SUBSUB}
|
||||
";
|
||||
|
||||
$DOWNLOAD_CAT_CHILD_TABLE = "
|
||||
<tr>
|
||||
<td class='forumheader3'>
|
||||
{DOWNLOAD_CAT_SUB_ICON}
|
||||
</td>
|
||||
<td class='forumheader3'>
|
||||
{DOWNLOAD_CAT_SUB_NEW_ICON} {DOWNLOAD_CAT_SUB_NAME}<br/>
|
||||
<span class='smalltext'>{DOWNLOAD_CAT_SUB_DESCRIPTION}</span>
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUB_COUNT}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUB_SIZE}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUB_DOWNLOADED}
|
||||
</td>
|
||||
</tr>
|
||||
{DOWNLOAD_CAT_SUBSUB}";
|
||||
}
|
||||
|
||||
if(!isset($DOWNLOAD_CAT_SUBSUB_TABLE))
|
||||
{
|
||||
$DOWNLOAD_CAT_SUBSUB_TABLE = "
|
||||
<tr>
|
||||
<td class='forumheader3'>
|
||||
|
||||
</td>
|
||||
<td class='forumheader3' style='width:100%'>
|
||||
<table>
|
||||
<tr>
|
||||
<td class='forumheader3' style='border:0'>".
|
||||
LAN_dl_42."
|
||||
</td>
|
||||
<td class='forumheader3' style='border:0'>
|
||||
{DOWNLOAD_CAT_SUBSUB_ICON}
|
||||
</td>
|
||||
<td class='forumheader3' style='border:0; width: 100%'>
|
||||
{DOWNLOAD_CAT_SUBSUB_NEW_ICON} {DOWNLOAD_CAT_SUBSUB_NAME}<br />
|
||||
<span class='smalltext'>
|
||||
{DOWNLOAD_CAT_SUBSUB_DESCRIPTION}
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUBSUB_COUNT}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUBSUB_SIZE}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUBSUB_DOWNLOADED}
|
||||
</td>
|
||||
</tr>";
|
||||
<tr>
|
||||
<td class='forumheader3'>
|
||||
|
||||
</td>
|
||||
<td class='forumheader3' style='width:100%'>
|
||||
<table>
|
||||
<tr>
|
||||
<td class='forumheader3' style='border:0'>
|
||||
{DOWNLOAD_CAT_SUBSUB_ICON}
|
||||
</td>
|
||||
<td class='forumheader3' style='border:0; width: 100%'>
|
||||
{DOWNLOAD_CAT_SUBSUB_NEW_ICON} {DOWNLOAD_CAT_SUBSUB_NAME}<br/>
|
||||
<span class='smalltext'>
|
||||
{DOWNLOAD_CAT_SUBSUB_DESCRIPTION}
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUBSUB_COUNT}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUBSUB_SIZE}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_CAT_SUBSUB_DOWNLOADED}
|
||||
</td>
|
||||
</tr>";
|
||||
}
|
||||
|
||||
if(!isset($DOWNLOAD_CAT_TABLE_END))
|
||||
{
|
||||
$DOWNLOAD_CAT_TABLE_END = "
|
||||
<tr><td class='forumheader3' colspan='5' style='text-align:right;'>{DOWNLOAD_CAT_NEWDOWNLOAD_TEXT}</td></tr>
|
||||
<tr><td class='forumheader3' colspan='5' style='text-align:right;'>{DOWNLOAD_CAT_SEARCH}</td></tr>
|
||||
</table>
|
||||
</div>\n";
|
||||
$DOWNLOAD_CAT_TABLE_END = "
|
||||
</tbody>
|
||||
</table>
|
||||
</div>\n";
|
||||
}
|
||||
// ##### ------------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
// ##### LIST TABLE -------------------------------------------------------------------------------
|
||||
if(!isset($DOWNLOAD_LIST_TABLE_START))
|
||||
{
|
||||
$DOWNLOAD_LIST_TABLE_START = "
|
||||
<div style='text-align:center'>
|
||||
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
||||
<table class='fborder' style='".USER_WIDTH."'>\n
|
||||
<tr>
|
||||
<td colspan='7' style='text-align:center' class='forumheader'>
|
||||
<span class='defaulttext'>".LAN_dl_37."</span>
|
||||
<select name='view' class='tbox'>".
|
||||
$DOWNLOAD_LIST_TABLE_START = "
|
||||
<div style='text-align:center'>
|
||||
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
||||
<table class='fborder' style='".USER_WIDTH."'>\n
|
||||
<colgroup>
|
||||
<col style='width:35%;'/>
|
||||
<col style='width:15%;'/>
|
||||
<col style='width:20%;'/>
|
||||
<col style='width:10%;'/>
|
||||
<col style='width:5%;'/>
|
||||
<col style='width:10%;'/>
|
||||
<col style='width:5%;'/>
|
||||
</colgroup>
|
||||
<tr>
|
||||
<td colspan='7' style='text-align:center' class='forumheader'>
|
||||
<span class='defaulttext'>".LAN_dl_37."</span>
|
||||
<select name='view' class='tbox'>".
|
||||
($view == 5 ? "<option selected='selected'>5</option>" : "<option>5</option>").
|
||||
($view == 10 ? "<option selected='selected'>10</option>" : "<option>10</option>").
|
||||
($view == 15 ? "<option selected='selected'>15</option>" : "<option>15</option>").
|
||||
@@ -150,83 +169,78 @@ if(!isset($DOWNLOAD_LIST_TABLE_START))
|
||||
($order == "download_name" ? "<option value='download_name' selected='selected'>".LAN_dl_23."</option>" : "<option value='download_name'>".LAN_dl_23."</option>").
|
||||
($order == "download_author" ? "<option value='download_author' selected='selected'>".LAN_dl_24."</option>" : "<option value='download_author'>".LAN_dl_24."</option>").
|
||||
($order == "download_requested" ? "<option value='download_requested' selected='selected'>".LAN_dl_24."</option>" : "<option value='download_requested'>".LAN_dl_12."</option>")."
|
||||
</select>
|
||||
|
||||
<span class='defaulttext'>".LAN_dl_39."</span>
|
||||
<select name='sort' class='tbox'>".
|
||||
</select>
|
||||
|
||||
<span class='defaulttext'>".LAN_dl_39."</span>
|
||||
<select name='sort' class='tbox'>".
|
||||
($sort == "ASC" ? "<option value='ASC' selected='selected'>".LAN_dl_25."</option>" : "<option value='ASC'>".LAN_dl_25."</option>").
|
||||
($sort == "DESC" ? "<option value='DESC' selected='selected'>".LAN_dl_26."</option>" : "<option value='DESC'>".LAN_dl_26."</option>")."
|
||||
</select>
|
||||
|
||||
<input class='button' type='submit' name='goorder' value='".LAN_dl_27."' />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='width:35%; text-align:center' class='fcaption'>".LAN_dl_28."</td>
|
||||
<td style='width:15%; text-align:center' class='fcaption'>".LAN_dl_22."</td>
|
||||
<td style='width:20%; text-align:center' class='fcaption'>".LAN_dl_24."</td>
|
||||
<td style='width:10%; text-align:center' class='fcaption'>".LAN_dl_21."</td>
|
||||
<td style='width:5%; text-align:center' class='fcaption'>".LAN_dl_29."</td>
|
||||
<td style='width:10%; text-align:center' class='fcaption'>".LAN_dl_12."</td>
|
||||
<td style='width:5%; text-align:center' class='fcaption'>".LAN_dl_8."</td>
|
||||
</tr>";
|
||||
|
||||
</select>
|
||||
|
||||
<input class='button' type='submit' name='goorder' value='".LAN_dl_27."' />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='fcaption'>".LAN_dl_28."</th>
|
||||
<th class='fcaption'>".LAN_dl_22."</th>
|
||||
<th class='fcaption'>".LAN_dl_24."</th>
|
||||
<th class='fcaption'>".LAN_dl_21."</th>
|
||||
<th class='fcaption'>".LAN_dl_29."</th>
|
||||
<th class='fcaption'>".LAN_dl_12."</th>
|
||||
<th class='fcaption'>".LAN_dl_8."</th>
|
||||
</tr>";
|
||||
}
|
||||
|
||||
if(!isset($DOWNLOAD_LIST_TABLE))
|
||||
{
|
||||
$DOWNLOAD_LIST_TABLE = "
|
||||
<tr>
|
||||
<td class='forumheader3' style='text-align:left;'>
|
||||
{DOWNLOAD_LIST_NEWICON} {DOWNLOAD_LIST_NAME}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_DATESTAMP}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_AUTHOR}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_FILESIZE}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_REQUESTED}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_RATING}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_LINK} {DOWNLOAD_LIST_ICON}</a>
|
||||
</td>
|
||||
</tr>";
|
||||
$DOWNLOAD_LIST_TABLE = "
|
||||
<tr>
|
||||
<td class='forumheader3' style='text-align:left;'>
|
||||
{DOWNLOAD_LIST_NEWICON} {DOWNLOAD_LIST_NAME}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_DATESTAMP}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_AUTHOR}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_FILESIZE}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_REQUESTED}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_RATING}
|
||||
</td>
|
||||
<td class='forumheader3' style='text-align:center;'>
|
||||
{DOWNLOAD_LIST_LINK}
|
||||
</td>
|
||||
</tr>";
|
||||
}
|
||||
|
||||
if(!isset($DOWNLOAD_LIST_TABLE_END))
|
||||
{
|
||||
$DOWNLOAD_LIST_TABLE_END = "
|
||||
<tr><td class='forumheader3' colspan='7' style='text-align:right;'>{DOWNLOAD_LIST_TOTAL_AMOUNT} {DOWNLOAD_LIST_TOTAL_FILES}</td></tr>
|
||||
</table>
|
||||
</form>
|
||||
$DOWNLOAD_LIST_TABLE_END = "
|
||||
<tr>
|
||||
<td class='forumheader3' colspan='7' style='text-align:right;'>{DOWNLOAD_LIST_TOTAL_AMOUNT} {DOWNLOAD_LIST_TOTAL_FILES}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>\n";
|
||||
}
|
||||
// ##### ------------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
// ##### VIEW TABLE -------------------------------------------------------------------------------
|
||||
|
||||
$DL_VIEW_PAGETITLE = PAGE_NAME." / {DOWNLOAD_CATEGORY} / {DOWNLOAD_VIEW_NAME}";
|
||||
$DL_VIEW_CAPTION = "{DOWNLOAD_VIEW_CAPTION}";
|
||||
|
||||
$DL_VIEW_NEXTPREV = "
|
||||
<div style='text-align:center'>
|
||||
<table style='".USER_WIDTH."'>
|
||||
<tr>
|
||||
<td style='width:40%;'>{DOWNLOAD_VIEW_PREV}</td>
|
||||
<td style='width:20%; text-align: center;'>{DOWNLOAD_BACK_TO_LIST}</td>
|
||||
<td style='width:40%; text-align: right;'>{DOWNLOAD_VIEW_NEXT}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>\n";
|
||||
$DL_VIEW_NEXTPREV = "
|
||||
<div style='text-align:center'>
|
||||
<table style='".USER_WIDTH."'>
|
||||
<tr>
|
||||
<td style='width:40%;'>{DOWNLOAD_VIEW_PREV}</td>
|
||||
<td style='width:20%; text-align: center;'>{DOWNLOAD_BACK_TO_LIST}</td>
|
||||
<td style='width:40%; text-align: right;'>{DOWNLOAD_VIEW_NEXT}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>\n";
|
||||
|
||||
// Only renders the following rows when data is present.
|
||||
$sc_style['DOWNLOAD_VIEW_AUTHOR_LAN']['pre'] = "<tr><td style='width:20%' class='forumheader3'>";
|
||||
@@ -249,104 +263,111 @@ $sc_style['DOWNLOAD_VIEW_AUTHORWEBSITE']['post'] = "</td></tr>";
|
||||
|
||||
if(!isset($DOWNLOAD_VIEW_TABLE))
|
||||
{
|
||||
$DOWNLOAD_VIEW_TABLE = "
|
||||
<div style='text-align:center'>
|
||||
<table class='fborder' style='".USER_WIDTH."'>\n
|
||||
<tr>
|
||||
<td colspan='2' class='fcaption' style='text-align:left;'>
|
||||
{DOWNLOAD_VIEW_NAME}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{DOWNLOAD_VIEW_AUTHOR_LAN}
|
||||
{DOWNLOAD_VIEW_AUTHOR}
|
||||
|
||||
{DOWNLOAD_VIEW_AUTHOREMAIL_LAN}
|
||||
{DOWNLOAD_VIEW_AUTHOREMAIL}
|
||||
|
||||
{DOWNLOAD_VIEW_AUTHORWEBSITE_LAN}
|
||||
{DOWNLOAD_VIEW_AUTHORWEBSITE}
|
||||
|
||||
<tr>
|
||||
<td style='width:20%' class='forumheader3'>{DOWNLOAD_VIEW_DESCRIPTION_LAN}</td>
|
||||
<td style='width:80%' class='forumheader3'>{DOWNLOAD_VIEW_DESCRIPTION}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td style='width:20%' class='forumheader3'>{DOWNLOAD_VIEW_IMAGE_LAN}</td>
|
||||
<td style='width:80%' class='forumheader3'>{DOWNLOAD_VIEW_IMAGE}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td style='width:20%' class='forumheader3'>{DOWNLOAD_VIEW_FILESIZE_LAN}</td>
|
||||
<td style='width:80%' class='forumheader3'>{DOWNLOAD_VIEW_FILESIZE}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td style='width:20%' class='forumheader3'>{DOWNLOAD_VIEW_DATE_LAN}</td>
|
||||
<td style='width:80%' class='forumheader3'>{DOWNLOAD_VIEW_DATE=long}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td style='width:20%' class='forumheader3'>{DOWNLOAD_VIEW_REQUESTED_LAN}</td>
|
||||
<td style='width:80%' class='forumheader3'>{DOWNLOAD_VIEW_REQUESTED}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td style='width:20%' class='forumheader3'>{DOWNLOAD_VIEW_LINK_LAN}</td>
|
||||
<td style='width:80%' class='forumheader3'>{DOWNLOAD_VIEW_LINK}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td style='width:20%' class='forumheader3'>{DOWNLOAD_VIEW_RATING_LAN}</td>
|
||||
<td style='width:80%' class='forumheader3'>{DOWNLOAD_VIEW_RATING}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td style='width:20%' class='forumheader3' colspan='2'>{DOWNLOAD_REPORT_LINK}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div style='text-align:right; ".USER_WIDTH."; margin-left: auto; margin-right: auto'>{DOWNLOAD_ADMIN_EDIT}</div>
|
||||
$DOWNLOAD_VIEW_TABLE = "
|
||||
<div style='text-align:center'>
|
||||
<table class='fborder' style='".USER_WIDTH."'>
|
||||
<colgroup>
|
||||
<col style='width:30%;'>
|
||||
<col style='width:70%;'>
|
||||
</colgroup>
|
||||
<tr>
|
||||
<td colspan='2' class='fcaption' style='text-align:left;'>
|
||||
{DOWNLOAD_VIEW_NAME}
|
||||
</td>
|
||||
</tr>
|
||||
{DOWNLOAD_VIEW_AUTHOR_LAN}
|
||||
{DOWNLOAD_VIEW_AUTHOR}
|
||||
{DOWNLOAD_VIEW_AUTHOREMAIL_LAN}
|
||||
{DOWNLOAD_VIEW_AUTHOREMAIL}
|
||||
{DOWNLOAD_VIEW_AUTHORWEBSITE_LAN}
|
||||
{DOWNLOAD_VIEW_AUTHORWEBSITE}
|
||||
<tr>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_DESCRIPTION_LAN}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_DESCRIPTION}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_IMAGE_LAN}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_IMAGE}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_FILESIZE_LAN}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_FILESIZE}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_DATE_LAN}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_DATE=long}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_REQUESTED_LAN}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_REQUESTED}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_LINK_LAN}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_LINK}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_RATING_LAN}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_VIEW_RATING}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3' colspan='2'>{DOWNLOAD_REPORT_LINK}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div style='text-align:right; ".USER_WIDTH."; margin-left: auto; margin-right: auto'>{DOWNLOAD_ADMIN_EDIT}</div>
|
||||
</div>\n";
|
||||
}
|
||||
|
||||
// ##### ------------------------------------------------------------------------------------------
|
||||
|
||||
// ##### MIRROR LIST -------------------------------------------------------------------------------
|
||||
|
||||
if(!isset($DOWNLOAD_MIRROR_START))
|
||||
{
|
||||
$DOWNLOAD_MIRROR_START = "
|
||||
<div style='text-align:center'>
|
||||
<table class='fborder' style='".USER_WIDTH."'>
|
||||
<tr>
|
||||
<td class='fcaption' colspan='4'>{DOWNLOAD_MIRROR_REQUEST}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader' style='width: 30%; text-align: center;'>{DOWNLOAD_MIRROR_HOST_LAN}</td>
|
||||
<td class='forumheader' style='width: 40%;'>{DOWNLOAD_MIRROR_DESCRIPTION_LAN}</td>
|
||||
<td class='forumheader' style='width: 20%; text-align: center;'>{DOWNLOAD_MIRROR_LOCATION_LAN}</td>
|
||||
<td class='forumheader' style='width: 10%; text-align: center;'>{DOWNLOAD_MIRROR_GET_LAN}</td>
|
||||
</tr>
|
||||
<table class='fborder' style='".USER_WIDTH."'>
|
||||
<colgroup>
|
||||
<col style='width:1%'/>
|
||||
<col style='width:29%'/>
|
||||
<col style='width:40%'/>
|
||||
<col style='width:20%'/>
|
||||
<col style='width:10%'/>
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th class='fcaption'>{DOWNLOAD_MIRROR_REQUEST_ICON}</th>
|
||||
<th class='fcaption' colspan='5'>".LAN_dl_72."{DOWNLOAD_MIRROR_REQUEST}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='forumheader' colspan='2'>".LAN_dl_68."</th>
|
||||
<th class='forumheader'>".LAN_dl_71."</th>
|
||||
<th class='forumheader'>".LAN_dl_70."</th>
|
||||
<th class='forumheader'>".LAN_dl_21."</th>
|
||||
<th class='forumheader'>".LAN_dl_32."</th>
|
||||
</tr>
|
||||
";
|
||||
}
|
||||
|
||||
if(!isset($DOWNLOAD_MIRROR))
|
||||
{
|
||||
$DOWNLOAD_MIRROR = "
|
||||
<tr>
|
||||
<td class='forumheader3' style='width: 30%; text-align: center;'>{DOWNLOAD_MIRROR_IMAGE}<br /><br /><div class='smalltext'>{DOWNLOAD_MIRROR_REQUESTS}<br />{DOWNLOAD_TOTAL_MIRROR_REQUESTS}</div></td>
|
||||
<td class='forumheader3' style='width: 40%'><div class='smalltext'>{DOWNLOAD_MIRROR_DESCRIPTION}</div></td>
|
||||
<td class='forumheader3' style='width: 20%;; text-align: center;'>{DOWNLOAD_MIRROR_LOCATION}</td>
|
||||
<td class='forumheader3' style='width: 10%; text-align: center;'><div class='smalltext'>{DOWNLOAD_MIRROR_LINK} {DOWNLOAD_MIRROR_FILESIZE}</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>{DOWNLOAD_MIRROR_IMAGE}</td>
|
||||
<td class='forumheader3'>
|
||||
{DOWNLOAD_MIRROR_NAME}
|
||||
<div class='smalltext'>
|
||||
{DOWNLOAD_MIRROR_REQUESTS}
|
||||
<br/>{DOWNLOAD_TOTAL_MIRROR_REQUESTS}
|
||||
</div>
|
||||
</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_MIRROR_DESCRIPTION}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_MIRROR_LOCATION}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_MIRROR_FILESIZE}</td>
|
||||
<td class='forumheader3'>{DOWNLOAD_MIRROR_LINK}</div></td>
|
||||
</tr>
|
||||
";
|
||||
}
|
||||
|
||||
if(!isset($DOWNLOAD_MIRROR_END))
|
||||
{
|
||||
$DOWNLOAD_MIRROR_END = "
|
||||
</table>
|
||||
</table>
|
||||
</div>
|
||||
";
|
||||
}
|
||||
|
Reference in New Issue
Block a user