Файл: modules/forum/view/new_themes.php
Строк: 47
<?php
/* DCMS Special
 * Дата последнего редактирования 14.01.2016
 * Модифицировал densnet
 * Автор yadalay
 */
$set['title'] = lang('Новые темы');
require_once H . 'sys/inc/thead.php';
aut();
$k_post = mysql_result(mysql_query('SELECT COUNT(*) FROM `forum_themes` WHERE `time` > ' . (time() - 60 * 60 * 24)), 0);
$k_page = k_page($k_post, $set['p_str']);
$page = page($k_page);
$start = $set['p_str'] * $page - $set['p_str'];
#Навигация
echo "<div class='card-header'>";
echo "<a href='/' data-toggle='tooltip' data-placement='right' title='" . lang('На главную') . "'><i class='fa fa-home fa-lg'></i></a> <i class='fa fa-angle-right fa-fw'></i> ";
echo "<a href='" . DIR_FORUM . "'>" . lang('Форум') . "</a> <i class='fa fa-angle-right fa-fw'></i> ";
echo lang('Новые темы');
echo "</div>";
if ($k_post == 0) {
    $doc->NoResult();
} else {
    $themes = mysql_query('SELECT * FROM `forum_themes` WHERE `time` > ' . (time() - 60 * 60 * 24) . ' ORDER BY `id` DESC LIMIT ' . $start . ', ' . $set['p_str']);
    while ($theme = mysql_fetch_object($themes)) {
        $creater = mysql_fetch_object(mysql_query('SELECT `id`, `nick` FROM `user` WHERE `id` = ' . $theme->id_user));
        $razdel = mysql_fetch_object(mysql_query('SELECT `id`, `id_forum` FROM `forum_razdels` WHERE `id` = ' . $theme->id_razdel));
        $forum = mysql_fetch_object(mysql_query('SELECT `id` FROM `forum` WHERE `id` = ' . $razdel->id_forum));
        $count_posts = mysql_result(mysql_query('SELECT COUNT(*) FROM `forum_posts` WHERE `id_theme` = ' . $theme->id), 0);
        $hide = (access('forum_post_ed')) ? NULL : '`hide` = "0" AND';
        $last_post = mysql_fetch_object(mysql_query('SELECT `id`, `hide`, `id_user`, `time` FROM `forum_posts` WHERE ' . $hide . ' `id_theme` = ' . $theme->id . ' ORDER BY `id` DESC'));
        $who = ($last_post && $last_post->id_user != 0) ? mysql_fetch_object(mysql_query('SELECT `id`, `nick` FROM `user` WHERE `id` = ' . $last_post->id_user)) : array();
        $who_id = ($last_post && $last_post->id_user != 0) ? $who->id : 0;
        $who_nick = ($last_post && $last_post->id_user != 0) ? $who->nick : '' . lang('Система') . '';
        if ($theme->reason_close != NULL) {
            $type = "<i class='fa fa-file-text fa-fw'></i> " . toOutput($theme->name, 1, 1, 0, 0, 0) . " <i class='fa fa-lock fa-fw'></i>";
        } elseif ($theme->type == 1) {
            $type = "<i class='fa fa-file-text fa-fw'></i> " . toOutput($theme->name, 1, 1, 0, 0, 0) . " <i class='fa fa-thumb-tack fa-fw'></i>";
        } else {
            $type = "<i class='fa fa-file-text fa-fw'></i> " . toOutput($theme->name, 1, 1, 0, 0, 0) . "";
        }
        echo "<div class='list-group-item' style='margin-top: 2px;margin-bottom: 2px;'>n";
        echo "<span style='float:right;'>";
        echo "<i class='fa fa-comments fa-fw'></i> $count_posts";
        echo "</span>";
        echo "<a href = '" . DIR_FORUM . "$forum->id/$razdel->id/$theme->id.html'>$type</a>";
        echo "    <span style = 'color: #9197a3;' title='" . date::time($theme->time) . "'>" . date::timek($theme->time) . "</span><br />";
        if ($last_post) {
            echo lang('Автор') . ": <a href = '/info.php?id=$theme->id_user'>$creater->nick</a> | " . lang('Посл') . ".:</b> <a href = '/info.php?id=$who_id'>$who_nick</a> <small style = 'color: #9197a3;'>" . date::timek($last_post->time) . "</small><br />";
        } else {
            $continue = (mb_strlen($theme->description) > 150) ? '.....' : NULL;
            echo toOutput(mb_substr($theme->description, 0, 150), 1, 1, 0, 1, 1) . $continue;
        }
        echo "</div>";
    }
    if ($k_page > 1) {
        echo "<div class='list-group-item'>n";
        str(DIR_FORUM . 'new_themes/', $k_page, $page);
        echo "</div>";
    }
}