Text Formatted Code
function phpblock_topdownloads () {
global $LANG_FILEMGMT, $_FM_TABLES, $_CONF;
$retval = '';
$result = DB_query("SELECT lid, title, hits from {$_FM_TABLES['filemgmt_filedetail']} WHERE hits > 0 ORDER BY hits desc LIMIT 10");
$nrows = DB_numRows($result);
if ($nrows > 0) {
$retval .= '<table border="0" cellspacing="0" cellpadding="0">' . LB;
$retval .= '<tr><td><b>Plik</b></td><td align="right"><b>D/Ls</b></td></tr>' . LB;
for ($i = 0; $i < $nrows && $i < 10; $i++) {
list ($lid, $title,$hits) = DB_fetchARRAY($result);
if (strlen ($title) > 20) {
$attr = ' title="' . htmlspecialchars ($title) . '"';
$title = substr ($title, 0, 17) . '...';
} else {
$attr = '';
}
$title = str_replace (' ', ' ', $title);
$retval .= '<tr><td><a href="' . $_CONF[site_url]
. '/filemgmt/singlefile.php?lid=' . $lid . '"' . $attr . '>'
. $title . '</td><td align="right">' . $hits . '</td></tr>' . LB;
}
$retval .= '</table>' . LB;
$retval .= '<p><a href="' . $_CONF[site_url]
. '/filemgmt/index.php">Więcej Plików</a></p>' . LB;
}
return $retval;
}