mirror of
https://github.com/e107inc/e107.git
synced 2025-08-13 10:04:35 +02:00
Download plugin cleanup and template upgrade. (Work in progress)
This commit is contained in:
@@ -2,35 +2,623 @@
|
||||
/*
|
||||
* e107 website system
|
||||
*
|
||||
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
||||
* Copyright (C) 2008-2013 e107 Inc (e107.org)
|
||||
* Released under the terms and conditions of the
|
||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
*
|
||||
*
|
||||
* $Source: /cvs_backup/e107_0.8/e107_plugins/download/handlers/download_class.php,v $
|
||||
* $Revision$
|
||||
* $Date$
|
||||
* $Author$
|
||||
*/
|
||||
|
||||
if (!e107::isInstalled('download')) { exit(); }
|
||||
|
||||
class download
|
||||
{
|
||||
var $e107;
|
||||
function download()
|
||||
{
|
||||
$this->e107 = e107::getInstance();
|
||||
}
|
||||
function displayCategoryList() {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var $e107;
|
||||
|
||||
private $qry = array();
|
||||
|
||||
private $orderOptions = array('download_id','download_datestamp','download_filesize','download_name','download_author','download_requested');
|
||||
|
||||
function __construct()
|
||||
{
|
||||
$this->e107 = e107::getInstance();
|
||||
|
||||
|
||||
require_once(e_PLUGIN."download/download_shortcodes.php");
|
||||
}
|
||||
|
||||
public function init()
|
||||
{
|
||||
|
||||
$tp = e107::getParser();
|
||||
|
||||
$tmp = explode('.', e_QUERY);
|
||||
|
||||
$pref = e107::getPref();
|
||||
|
||||
// Set Defaults
|
||||
$this->qry['order'] = vartrue($pref['download_order'],'download_datestamp');
|
||||
$this->qry['sort'] = vartrue($pref['download_sort'], 'desc');
|
||||
$this->qry['view'] = vartrue($pref['download_view'], 10);
|
||||
|
||||
|
||||
// v1.x
|
||||
if (is_numeric($tmp[0])) //legacy // $tmp[0] at least must be valid
|
||||
{
|
||||
$dl_from = intval($tmp[0]);
|
||||
$this->qry['action'] = varset(preg_replace("#\W#", "", $tp->toDB($tmp[1])),'list');
|
||||
$this->qry['id'] = intval($tmp[2]);
|
||||
$this->qry['view'] = intval($tmp[3]);
|
||||
$this->qry['order'] = preg_replace("#\W#", "", $tp->toDB($tmp[4]));
|
||||
$this->qry['sort'] = preg_replace("#\W#", "", $tp->toDB($tmp[5]));
|
||||
}
|
||||
elseif($tmp[1])
|
||||
{
|
||||
$this->qry['action'] = preg_replace("#\W#", "", $tp->toDB($tmp[0]));
|
||||
$this->qry['id'] = intval($tmp[1]);
|
||||
// $errnum = intval(varset($tmp[2],0));
|
||||
}
|
||||
|
||||
|
||||
// v2.x
|
||||
if(varset($_GET['action']))
|
||||
{
|
||||
$this->qry['action'] = (string) $_GET['action'];
|
||||
$this->qry['view'] = varset($_GET['view']) ? intval($_GET['view']) : 10;
|
||||
$this->qry['id'] = intval($_GET['id']);
|
||||
$this->qry['order'] = vartrue($_GET['order']) && in_array("download_".$_GET['order'],$this->orderOptions) ? $_GET['order'] : 'datestamp';
|
||||
$this->qry['sort'] = (varset($_GET['sort']) == 'asc') ? "asc" : 'desc';
|
||||
}
|
||||
|
||||
// v1.x
|
||||
if(varset($_POST['view']))
|
||||
{
|
||||
$this->qry['view'] = varset($_POST['view']) ? intval($_POST['view']) : 10;
|
||||
$this->qry['order'] = varset($_POST['order']) && in_array("download_".$_POST['order'],$this->orderOptions) ? $_POST['order'] : 'datestamp';
|
||||
$this->qry['sort'] = (strtolower($_POST['sort']) == 'asc') ? "asc" : 'desc';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function renderCategories()
|
||||
{
|
||||
|
||||
$tp = e107::getParser();
|
||||
$ns = e107::getRender();
|
||||
|
||||
|
||||
// if ($cacheData = $e107cache->retrieve("download_cat".$maincatval,720)) // expires every 12 hours. //TODO make this an option
|
||||
{
|
||||
// echo $cacheData;
|
||||
// return;
|
||||
}
|
||||
|
||||
|
||||
if(deftrue('BOOTSTRAP')) // v2.x
|
||||
{
|
||||
$template = e107::getTemplate('download','download','categories');
|
||||
|
||||
$DOWNLOAD_CAT_TABLE_START = varset($template['start']);
|
||||
$DOWNLOAD_CAT_PARENT_TABLE = $template['parent'];
|
||||
$DOWNLOAD_CAT_CHILD_TABLE = $template['child'];
|
||||
$DOWNLOAD_CAT_SUBSUB_TABLE = $template['subchild'];
|
||||
$DOWNLOAD_CAT_TABLE_END = varset($template['end']);
|
||||
|
||||
// $DL_VIEW_NEXTPREV = varset($template['nextprev']);
|
||||
// $DL_VIEW_PAGETITLE = varset($template['pagetitle']);
|
||||
// $DL_VIEW_CAPTION = varset($template['caption'],"{DOWNLOAD_VIEW_CAPTION}");
|
||||
}
|
||||
else // Legacy v1.x
|
||||
{
|
||||
$template_name = 'download_template.php';
|
||||
|
||||
if (is_readable(THEME."templates/".$template_name))
|
||||
{
|
||||
require_once(THEME."templates/".$template_name);
|
||||
}
|
||||
elseif (is_readable(THEME.$template_name))
|
||||
{
|
||||
require_once(THEME.$template_name);
|
||||
}
|
||||
else
|
||||
{
|
||||
require_once(e_PLUGIN."download/templates/".$template_name);
|
||||
}
|
||||
}
|
||||
|
||||
$download_shortcodes = new download_shortcodes;
|
||||
$download_shortcodes->qry = $this->qry;
|
||||
|
||||
|
||||
|
||||
if(!defined("DL_IMAGESTYLE")){ define("DL_IMAGESTYLE","border:1px solid blue");}
|
||||
|
||||
// Read in tree of categories which this user is allowed to see
|
||||
$dlcat = new downloadCategory(varset($pref['download_subsub'],1),USERCLASS_LIST,$maincatval,varset($pref['download_incinfo'],FALSE));
|
||||
|
||||
if ($dlcat->down_count == 0)
|
||||
{
|
||||
$ns->tablerender(LAN_dl_18, "<div style='text-align:center'>".LAN_dl_2."</div>");
|
||||
return;
|
||||
// require_once(FOOTERF);
|
||||
// exit;
|
||||
}
|
||||
|
||||
global $dlrow, $dlsubrow;
|
||||
|
||||
$download_cat_table_string = "";
|
||||
foreach($dlcat->cat_tree as $dlrow) // Display main category headings, then sub-categories, optionally with sub-sub categories expanded
|
||||
{
|
||||
$download_cat_table_string .= $tp->parseTemplate($DOWNLOAD_CAT_PARENT_TABLE, TRUE, vartrue($download_shortcodes));
|
||||
|
||||
foreach($dlrow['subcats'] as $dlsubrow)
|
||||
{
|
||||
$download_cat_table_string .= $tp->parseTemplate($DOWNLOAD_CAT_CHILD_TABLE, TRUE, $download_shortcodes);
|
||||
|
||||
foreach($dlsubrow['subsubcats'] as $dlsubsubrow)
|
||||
{
|
||||
$download_cat_table_string .= $tp->parseTemplate($DOWNLOAD_CAT_SUBSUB_TABLE, TRUE, $download_shortcodes);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$dl_text = $tp->parseTemplate($DOWNLOAD_CAT_TABLE_START, TRUE, $download_shortcodes);
|
||||
$dl_text .= $download_cat_table_string;
|
||||
$dl_text .= $tp->parseTemplate($DOWNLOAD_CAT_TABLE_END, TRUE, $download_shortcodes);
|
||||
|
||||
$caption = varset($DOWNLOAD_CAT_CAPTION) ? $tp->parseTemplate($DOWNLOAD_CAT_CAPTION, TRUE, $download_shortcodes) : LAN_dl_18;
|
||||
|
||||
//ob_start();
|
||||
|
||||
$ns->tablerender($caption, $dl_text);
|
||||
|
||||
// $cache_data = ob_get_flush();
|
||||
// $e107cache->set("download_cat".$maincatval, $cache_data);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public function renderView()
|
||||
{
|
||||
if(deftrue('BOOTSTRAP')) // v2.x
|
||||
{
|
||||
$template = e107::getTemplate('download','download','view');
|
||||
|
||||
$DOWNLOAD_VIEW_TABLE_START = varset($template['start']);
|
||||
$DOWNLOAD_VIEW_TABLE = $template['item'];
|
||||
$DOWNLOAD_VIEW_TABLE_END = varset($template['end']);
|
||||
$DL_VIEW_NEXTPREV = varset($template['nextprev']);
|
||||
$DL_VIEW_PAGETITLE = varset($template['pagetitle']);
|
||||
$DL_VIEW_CAPTION = varset($template['caption'],"{DOWNLOAD_VIEW_CAPTION}");
|
||||
}
|
||||
else // Legacy v1.x
|
||||
{
|
||||
$template_name = 'download_template.php';
|
||||
|
||||
if (is_readable(THEME."templates/".$template_name))
|
||||
{
|
||||
require_once(THEME."templates/".$template_name);
|
||||
}
|
||||
elseif (is_readable(THEME.$template_name))
|
||||
{
|
||||
require_once(THEME.$template_name);
|
||||
}
|
||||
else
|
||||
{
|
||||
require_once(e_PLUGIN."download/templates/".$template_name);
|
||||
}
|
||||
}
|
||||
|
||||
$sql = e107::getDb();
|
||||
$tp = e107::getParser();
|
||||
$ns = e107::getRender();
|
||||
|
||||
$gen = new convert;
|
||||
|
||||
$download_shortcodes = new download_shortcodes;
|
||||
$download_shortcodes->qry = $this->qry;
|
||||
|
||||
$highlight_search = FALSE;
|
||||
if (isset($_POST['highlight_search']))
|
||||
{
|
||||
$highlight_search = TRUE;
|
||||
}
|
||||
|
||||
$query = "
|
||||
SELECT d.*, dc.* FROM #download AS d
|
||||
LEFT JOIN #download_category AS dc ON d.download_category = dc.download_category_id
|
||||
WHERE d.download_id = {$this->qry['id']} AND d.download_active > 0
|
||||
AND d.download_visible IN (".USERCLASS_LIST.")
|
||||
AND dc.download_category_class IN (".USERCLASS_LIST.")
|
||||
LIMIT 1";
|
||||
|
||||
if(!$sql->gen($query))
|
||||
{
|
||||
//require_once(HEADERF);
|
||||
$ns->tablerender(LAN_dl_18, "<div style='text-align:center'>".LAN_dl_3."</div>");
|
||||
return;
|
||||
//require_once(FOOTERF);
|
||||
//exit;
|
||||
}
|
||||
|
||||
global $dlrow;
|
||||
|
||||
$dlrow = $sql->fetch();
|
||||
|
||||
$comment_edit_query = 'comment.download.'.$id;
|
||||
|
||||
if(!defined("DL_IMAGESTYLE")){ define("DL_IMAGESTYLE","border:0px");}
|
||||
if(!isset($DL_VIEW_PAGETITLE))
|
||||
{
|
||||
$DL_VIEW_PAGETITLE = PAGE_NAME." / {DOWNLOAD_CATEGORY} / {DOWNLOAD_VIEW_NAME}";
|
||||
}
|
||||
|
||||
$DL_TITLE = $tp->parseTemplate($DL_VIEW_PAGETITLE, TRUE, $download_shortcodes);
|
||||
|
||||
define("e_PAGETITLE", $DL_TITLE);
|
||||
|
||||
$DL_TEMPLATE = $DOWNLOAD_VIEW_TABLE_START.$DOWNLOAD_VIEW_TABLE.$DOWNLOAD_VIEW_TABLE_END;
|
||||
|
||||
$text = $tp->parseTemplate($DL_TEMPLATE, TRUE, $download_shortcodes);
|
||||
|
||||
if(!isset($DL_VIEW_NEXTPREV))
|
||||
{
|
||||
$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>
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
// ------- Next/Prev -----------
|
||||
$text .= $tp->parseTemplate($DL_VIEW_NEXTPREV,TRUE, $download_shortcodes);
|
||||
|
||||
$caption = $tp->parseTemplate($DL_VIEW_CAPTION, TRUE, $download_shortcodes);
|
||||
|
||||
$ns->tablerender($caption, $text);
|
||||
|
||||
unset($text);
|
||||
|
||||
if ($dlrow['download_comment'])
|
||||
{
|
||||
e107::getComment()->compose_comment("download", "comment", $id, $width,$dlrow['download_name'], $showrate=FALSE);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public function renderList()
|
||||
{
|
||||
|
||||
if(deftrue('BOOTSTRAP')) // v2.x
|
||||
{
|
||||
$template = e107::getTemplate('download','download','list');
|
||||
|
||||
$DOWNLOAD_LIST_TABLE_START = $template['start'];
|
||||
$DOWNLOAD_LIST_TABLE = $template['item'];
|
||||
$DOWNLOAD_LIST_TABLE_END = $template['end'];
|
||||
$DOWNLOAD_LIST_NEXTPREV = $template['nextprev'];
|
||||
}
|
||||
else // Legacy v1.x
|
||||
{
|
||||
$template_name = 'download_template.php';
|
||||
|
||||
if (is_readable(THEME."templates/".$template_name))
|
||||
{
|
||||
require_once(THEME."templates/".$template_name);
|
||||
}
|
||||
elseif (is_readable(THEME.$template_name))
|
||||
{
|
||||
require_once(THEME.$template_name);
|
||||
}
|
||||
else
|
||||
{
|
||||
require_once(e_PLUGIN."download/templates/".$template_name);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$sql = e107::getDb();
|
||||
$tp = e107::getParser();
|
||||
$ns = e107::getRender();
|
||||
|
||||
$download_shortcodes = new download_shortcodes;
|
||||
$download_shortcodes->qry = $this->qry;
|
||||
|
||||
$total_downloads = $sql->count("download", "(*)", "WHERE download_category = '{$this->qry['id']}' AND download_active > 0 AND download_visible REGEXP '" . e_CLASS_REGEXP . "'");
|
||||
|
||||
|
||||
/* SHOW SUBCATS ... */
|
||||
$qry = "SELECT download_category_id,download_category_class FROM #download_category WHERE download_category_parent=".intval($this->qry['id']);
|
||||
if($sql->gen($qry))
|
||||
{
|
||||
/* there are subcats - display them ... */
|
||||
$qry = "
|
||||
SELECT dc.*, dc2.download_category_name AS parent_name, dc2.download_category_icon as parent_icon, SUM(d.download_filesize) AS d_size,
|
||||
COUNT(d.download_id) AS d_count,
|
||||
MAX(d.download_datestamp) as d_last,
|
||||
SUM(d.download_requested) as d_requests
|
||||
FROM #download_category AS dc
|
||||
LEFT JOIN #download AS d ON dc.download_category_id = d.download_category AND d.download_active > 0 AND d.download_visible IN (" . USERCLASS_LIST . ")
|
||||
LEFT JOIN #download_category as dc2 ON dc2.download_category_id='{$this->qry['id']}'
|
||||
WHERE dc.download_category_class IN (" . USERCLASS_LIST . ") AND dc.download_category_parent='{$this->qry['id']}'
|
||||
GROUP by dc.download_category_id ORDER by dc.download_category_order
|
||||
";
|
||||
|
||||
$sql->gen($qry);
|
||||
|
||||
$scArray = $sql->db_getList();
|
||||
$load_template = 'download_template';
|
||||
|
||||
if(!isset($DOWNLOAD_CAT_PARENT_TABLE))
|
||||
{
|
||||
eval($template_load_core);
|
||||
}
|
||||
|
||||
if(!defined("DL_IMAGESTYLE"))
|
||||
{
|
||||
define("DL_IMAGESTYLE", "border:1px solid blue");
|
||||
}
|
||||
|
||||
$download_cat_table_string = "";
|
||||
|
||||
$dl_text = $tp->parseTemplate($DOWNLOAD_CAT_TABLE_PRE, TRUE, $download_shortcodes);
|
||||
$dl_text .= $tp->parseTemplate($DOWNLOAD_CAT_TABLE_START, TRUE, $download_shortcodes);
|
||||
|
||||
foreach($scArray as $dlsubsubrow)
|
||||
{
|
||||
$dl_text .= $tp->parseTemplate($DOWNLOAD_CAT_SUBSUB_TABLE, TRUE, $download_shortcodes);
|
||||
}
|
||||
|
||||
$dl_text .= $tp->parseTemplate($DOWNLOAD_CAT_TABLE_END, TRUE, $download_shortcodes);
|
||||
|
||||
$dlbreadcrumb = $this->getBreadcrumb(array(LAN_dl_18 => e_SELF,$type));
|
||||
$dl_title = $tp->parseTemplate("{BREADCRUMB=dlbreadcrumb}", TRUE, $download_shortcodes);
|
||||
|
||||
$ns->tablerender($dl_title, $dl_text);
|
||||
$text = "";
|
||||
// If other files, show in a separate block
|
||||
$dl_title = "";
|
||||
// Cancel title once displayed
|
||||
}// End of subcategory display
|
||||
|
||||
// Now display individual downloads
|
||||
$download_category_class = 0;
|
||||
|
||||
if(!check_class($download_category_class))
|
||||
{
|
||||
|
||||
|
||||
$ns->tablerender(LAN_dl_18, "
|
||||
<div style='text-align:center'>
|
||||
" . LAN_dl_3 . "
|
||||
</div>");
|
||||
|
||||
return;
|
||||
// require_once (FOOTERF);
|
||||
// exit ;
|
||||
}
|
||||
if($total_downloads < $this->qry['view'])
|
||||
{
|
||||
$dl_from = 0;
|
||||
}
|
||||
|
||||
|
||||
if(!defined("DL_IMAGESTYLE"))
|
||||
{
|
||||
define("DL_IMAGESTYLE", "border:1px solid blue");
|
||||
}
|
||||
|
||||
require_once (e_HANDLER . "rate_class.php");
|
||||
$dltdownloads = 0;
|
||||
|
||||
// $dl_from - first entry to show (note - can get reset due to reuse of query,
|
||||
// even if values overridden this time)
|
||||
// $this->qry['view'] - number of entries per page
|
||||
// $total_downloads - total number of entries matching search criteria
|
||||
$filetotal = $sql->select("download", "*", "download_category='{$this->qry['id']}' AND download_active > 0 AND download_visible IN (" . USERCLASS_LIST . ") ORDER BY download_{$this->qry['order']} {$this->qry['sort']} LIMIT {$dl_from}, ".$this->qry['view']);
|
||||
|
||||
if($filetotal)
|
||||
{
|
||||
// Only show list if some files in it
|
||||
$dl_text = $tp->parseTemplate($DOWNLOAD_LIST_TABLE_START, TRUE, $download_shortcodes);
|
||||
|
||||
global $dlrow, $dlft, $dltdownloads;
|
||||
|
||||
$dlft = ($filetotal < $this->qry['view'] ? $filetotal: $this->qry['view']);
|
||||
|
||||
while($dlrow = $sql->fetch())
|
||||
{
|
||||
$agreetext = $tp->toHTML($pref['agree_text'], TRUE, 'DESCRIPTION');
|
||||
$current_row = ($current_row)? 0: 1;
|
||||
// Alternating CSS for each row.(backwards compatible)
|
||||
$template = ($current_row == 1)? $DOWNLOAD_LIST_TABLE: str_replace("forumheader3", "forumheader3 forumheader3_alt", $DOWNLOAD_LIST_TABLE);
|
||||
|
||||
$dltdownloads += $dlrow['download_requested'];
|
||||
|
||||
$dl_text .= $tp->parseTemplate($template, TRUE, $download_shortcodes);
|
||||
|
||||
|
||||
}
|
||||
|
||||
$dl_text .= $tp->parseTemplate($DOWNLOAD_LIST_TABLE_END, TRUE, $download_shortcodes);
|
||||
|
||||
if($sql->select("download_category", "*", "download_category_id='{$download_category_parent}' "))
|
||||
{
|
||||
$parent = $sql->fetch();
|
||||
}
|
||||
|
||||
|
||||
$ns->tablerender(LAN_dl_18, $dl_text, 'download-list');
|
||||
}
|
||||
|
||||
if(!isset($DOWNLOAD_LIST_NEXTPREV))
|
||||
{
|
||||
$sc_style['DOWNLOAD_LIST_NEXTPREV']['pre'] = "
|
||||
<div class='nextprev'>
|
||||
";
|
||||
$sc_style['DOWNLOAD_LIST_NEXTPREV']['post'] = "
|
||||
</div>";
|
||||
|
||||
$DOWNLOAD_LIST_NEXTPREV = "
|
||||
<div style='text-align:center;margin-left:auto;margin-right:auto'>
|
||||
{DOWNLOAD_BACK_TO_CATEGORY_LIST}
|
||||
<br />
|
||||
<br />
|
||||
{DOWNLOAD_LIST_NEXTPREV}
|
||||
</div>";
|
||||
}
|
||||
|
||||
global $nextprev_parms;
|
||||
|
||||
$nextprev_parms = $total_downloads . "," . $this->qry['view'] . "," . $dl_from . "," . e_SELF . "?[FROM].list.{$this->qry['id']}.{$this->qry['view']}.{$this->qry['order']}.{$this->qry['sort']}.";
|
||||
|
||||
echo $tp->parseTemplate($DOWNLOAD_LIST_NEXTPREV, TRUE, $download_shortcodes);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
function renderReport()
|
||||
{
|
||||
$sql = e107::getDb();
|
||||
$tp = e107::getParser();
|
||||
$ns = e107::getRender();
|
||||
$frm = e107::getForm();
|
||||
$pref = e107::getPref();
|
||||
|
||||
$query = "
|
||||
SELECT d.*, dc.* FROM #download AS d
|
||||
LEFT JOIN #download_category AS dc ON d.download_category = dc.download_category_id
|
||||
WHERE d.download_id = {$this->qry['id']}
|
||||
AND download_active > 0
|
||||
LIMIT 1";
|
||||
|
||||
if(!$sql->gen($query))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
$dlrow = $sql->fetch();
|
||||
|
||||
extract($dlrow);
|
||||
|
||||
if (isset($_POST['report_download']))
|
||||
{
|
||||
$report_add = $tp->toDB($_POST['report_add']);
|
||||
$download_name = $tp->toDB($download_name);
|
||||
$user = USER ? USERNAME : LAN_dl_52;
|
||||
|
||||
if ($pref['download_email'])
|
||||
{ // this needs to be moved into the NOTIFY, with an event.
|
||||
require_once(e_HANDLER."mail.php");
|
||||
$subject = LAN_dl_60." ".SITENAME;
|
||||
$report = LAN_dl_58." ".SITENAME.":\n".(substr(SITEURL, -1) == "/" ? SITEURL : SITEURL."/")."download.php?view.".$download_id."\n
|
||||
".LAN_dl_59." ".$user."\n".$report_add;
|
||||
sendemail(SITEADMINEMAIL, $subject, $report);
|
||||
}
|
||||
|
||||
$sql->insert('generic', "0, 'Broken Download', ".time().",'".USERID."', '{$download_name}', {$id}, '{$report_add}'");
|
||||
|
||||
define("e_PAGETITLE", PAGE_NAME." / ".LAN_dl_47);
|
||||
|
||||
// require_once(HEADERF);
|
||||
|
||||
$text = LAN_dl_48."<br /><br /><a href='".e_PLUGIN."download/download.php?view.".$download_id."'>".LAN_dl_49."</a>";
|
||||
// $dlbreadcrumb = $dl->getBreadcrumb(array(LAN_dl_18=>e_SELF, $dlrow['download_category_name']=>e_SELF."?list.".$dlrow['download_category_id'], $dlrow['download_name']=>e_SELF."?view.".$dlrow['download_id'], LAN_dl_50));
|
||||
// $dl_title .= $tp->parseTemplate("{BREADCRUMB=dlbreadcrumb}", TRUE, $download_shortcodes);
|
||||
|
||||
$ns->tablerender(LAN_dl_18, $text);
|
||||
}
|
||||
else
|
||||
{
|
||||
define("e_PAGETITLE", PAGE_NAME." / ".LAN_dl_51." ".$download_name);
|
||||
// require_once(HEADERF);
|
||||
|
||||
$breadcrumb = array();
|
||||
$breadcrumb[] = array('text' => LAN_dl_18, 'url' => e_SELF);
|
||||
$breadcrumb[] = array('text' => $dlrow['download_category_name'], 'url' => e_SELF."?action=list&id=".$dlrow['download_category_id']);
|
||||
$breadcrumb[] = array('text' => $dlrow['download_name'], 'url' => e_SELF."?action=view&id=".$dlrow['download_id']);
|
||||
$breadcrumb[] = array('text' => LAN_dl_50, 'url' => null);
|
||||
|
||||
$text = $frm->breadcrumb($breadcrumb);
|
||||
|
||||
$text .= "<form action='".e_SELF."?report.{$download_id}' method='post'>
|
||||
<div>
|
||||
".LAN_dl_32.": <a href='".e_PLUGIN."download/download?action=view&id={$download_id}'>".$download_name."</a>
|
||||
</div>
|
||||
<div>".LAN_dl_54."<br />".LAN_dl_55."</div>
|
||||
<div> ".$frm->textarea('report_add')."</div>
|
||||
<div class='text-center'>
|
||||
".$frm->button('report_download',LAN_dl_45,'submit')."
|
||||
</div>
|
||||
</form>";
|
||||
|
||||
$ns->tablerender(LAN_dl_18, $text);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//TODO
|
||||
function renderMirror()
|
||||
{
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @DEPRECATED
|
||||
*/
|
||||
function getBreadcrumb($arr)
|
||||
{
|
||||
$dlbreadcrumb = array();
|
||||
@@ -67,7 +655,7 @@ class download
|
||||
LEFT JOIN #download_category as dc2 ON dc2.download_category_id=dc1.download_category_parent ";
|
||||
if (ADMIN === FALSE) $qry .= " WHERE dc.download_category_class IN (".USERCLASS_LIST.") ";
|
||||
$qry .= " ORDER by dc2.download_category_order, dc1.download_category_order, dc.download_category_order"; // This puts main categories first, then sub-cats, then sub-sub cats
|
||||
if (!$sql->db_Select_gen($qry))
|
||||
if (!$sql->gen($qry))
|
||||
{
|
||||
return "Error reading categories<br />";
|
||||
exit;
|
||||
@@ -76,7 +664,7 @@ class download
|
||||
<option value=''>{$blankText}</option>\n";
|
||||
// Its a structured display option - need a 2-step process to create a tree
|
||||
$catlist = array();
|
||||
while ($dlrow = $sql->db_Fetch(MYSQL_ASSOC))
|
||||
while ($dlrow = $sql->fetch(MYSQL_ASSOC))
|
||||
{
|
||||
$tmp = $dlrow['download_category_parent'];
|
||||
if ($tmp == '0')
|
||||
|
Reference in New Issue
Block a user