Размер файла: 1.94Kb
<?php
// by Mike O. (mides), coolcms.org
switch ($type) {
case 'blogs':
$title = 'Блоги';
$seen_t = 'просмотры';
$seen_row = 'Просмотров';
$where = '';
break;
case 'photos':
$title = 'Фото';
$seen_t = 'просмотры';
$seen_row = 'Просмотров';
$where = '';
break;
case 'loads':
$title = 'ЗЦ';
$seen_t = 'скачивания';
$seen_row = 'Скачив.';
$where = 'WHERE `ok` = 1';
break;
}
switch ($_GET['sort']) {
case 'rating': $sort = 'rating'; $b3 = '<b>'; $b4 = '</b>'; break;
case 'time': $sort = 'time'; $b5 = '<b>'; $b6 = '</b>'; break;
default: $sort = 'seen'; $b1 = '<b>'; $b2 = '</b>'; break;
}
echo '<div class="title"><a href="index.php">'.$title.'</a>» ТОП</div><div class="body">';
echo 'Сортировка: <a href="?act=top&sort=seen">'.$b1.$seen_t.$b2.'</a>, <a href="?act=top&sort=rating">'.$b3.'оценки'.$b4.'</a>, <a href="?act=top&sort=time">'.$b5.'новые'.$b6.'</a></div>';
$total = mysql_result(mysql_query("SELECT COUNT(`id`) FROM $type $where"), 0);
if ($total > 0) {
$pages = ceil($total / $config['onpage']);
if ($page > $pages or $page == 0) {
$page = 1;
}
$begin = ($page - 1) * $config['onpage'];
$top_r = mysql_query("SELECT * FROM $type $where ORDER BY $sort DESC LIMIT $begin, $config[onpage]");
while ($top = mysql_fetch_assoc($top_r)) {
echo '<div class="row"><a href="index.php?act=view&id='.$top['id'].'">'.$top['name'].' (<b>'.$top['rating'].'</b>)<br />'.$seen_row.': '.$top['seen'].', ';
$comm = mysql_result(mysql_query("SELECT COUNT(`id`) FROM `".$type."_comm` WHERE `id_$type` = '$top[id]'"), 0);
echo 'комм.: '.$comm.'<br />';
echo '</a></div>';
}
} else {
echo 'Пусто';
}
echo '<div class="body">';
navig($page, '?act=top&sort='.$sort.'&', $pages);
echo '<a href="index.php">'.$title.'</a>» ТОП</div>';
?>