Файл: forum/last.themes.php
Строк: 69
<?php
include_once '../sys/inc/start.php';
$doc = new document();
$doc->title = __('Новые темы');
$today = mktime(0, 0, 0);
$yesterday = $today - 3600 * 24;
$cache_id = 'forum.last.themes_all';
if (false === ($posts_all = cache::get($cache_id))) {
$posts_all = array();
$q = $db->prepare("SELECT `th`.* ,
`tp`.`name` AS `topic_name`,
`cat`.`name` AS `category_name`,
`tp`.`group_write` AS `topic_group_write`,
COUNT(DISTINCT `msg`.`id`) AS `count`,
(SELECT COUNT(*) FROM `forum_messages` AS `msg` WHERE `msg`.`id_theme` = `th`.`id` AND `msg`.`time` > :time) AS `count_new`,
(SELECT COUNT(`fv`.`id_user`) FROM `forum_views` AS `fv` WHERE `fv`.`id_theme` = `th`.`id`) AS `views`,
GREATEST(`th`.`group_show`, `tp`.`group_show`, `cat`.`group_show`) AS `group_show`
FROM `forum_themes` AS `th`
LEFT JOIN `forum_topics` AS `tp` ON `tp`.`id` = `th`.`id_topic`
LEFT JOIN `forum_categories` AS `cat` ON `cat`.`id` = `th`.`id_category`
LEFT JOIN `forum_messages` AS `msg` ON `msg`.`id_theme` = `th`.`id`
WHERE `th`.`time_create` > :time
GROUP BY `th`.`id`
ORDER BY `th`.`id` DESC");
$q->execute(Array(':time' => TIME - 3600 * 24 * 7));
$posts_all = $q->fetchAll();
cache::set($cache_id, $posts_all, 20);
}
$count = count($posts_all);
$posts_for_view = array();
for ($i = 0; $i < $count; $i++) {
if ($posts_all[$i]['group_show'] > $user->group) {
continue;
}
$posts_for_view[] = $posts_all[$i];
}
$themes = array();
$views = array();
$count_posts = count($posts_for_view);
if ($count_posts && $user->id) {
for ($i = 0; $i < $count_posts; $i++) {
$themes[] = $posts_for_view[$i]['id'];
}
$q = $db->prepare("SELECT `id_theme`, MAX(`time`) AS `time` FROM `forum_views` WHERE `id_user` = ? AND `id_theme` IN (" . implode(',', $themes) . ") GROUP BY `id_theme`");
$q->execute(Array($user->id));
while ($view = $q->fetch()) {
$views[$view['id_theme']] = $view['time'];
}
}
$pages = new pages($count_posts);
$start = $pages->my_start();
$end = $pages->end();
$listing = new listing();
for ($z = $start; $z < $end && $z < $pages->posts; $z++) {
$theme = $posts_for_view[$z];
if (!isset($msg_today) && $theme['time_create'] >= $today) {
$post = $listing->post();
$post->highlight = true;
$post->title = __("Сегодня");
$msg_today = true;
}
if (!isset($msg_yesterday) && $theme['time_create'] < $today && $theme['time_create'] >= $yesterday) {
if ($listing->count()) {
$listing->display();
$listing = new listing();
}
$post = $listing->post();
$post->highlight = true;
$post->title = __("Вчера");
$msg_yesterday = true;
}
if (!isset($msg_week) && $theme['time_create'] < $yesterday) {
if ($listing->count()) {
$listing->display();
$listing = new listing();
}
$post = $listing->post();
$post->highlight = true;
$post->title = __("Неделя");
$msg_week = true;
}
$post = $listing->post();
if ($user->id) {
if (isset($views[$theme['id']])) {
$post->highlight = $theme['time_last'] > $views[$theme['id']];
} else {
$post->highlight = true;
}
}
$is_open = (int)($theme['group_write'] <= $theme['topic_group_write']);
$post->icon("forum.theme.{$theme['top']}.$is_open.png");
$post->time = misc::when($theme['time_create']);
$post->title = text::toValue($theme['name']);
$post->counter = '+' . $theme['count_new'];
$post->url = 'theme.php?id=' . $theme['id'] . '&page=end';
$autor = new user($theme['id_autor']);
$last_msg = new user($theme['id_last']);
$post->content = ($autor->id != $last_msg->id ? $autor->nick . '/' . $last_msg->nick : $autor->nick) . '<br />';
$post->content .= "(<a href='category.php?id=$theme[id_category]'>" . text::toValue($theme['category_name']) . "</a> > <a href='topic.php?id=$theme[id_topic]'>" . text::toValue($theme['topic_name']) . "</a>)<br />";
$post->bottom = __('Просмотров: %s', $theme['views']);
if (!$doc->last_modified)
$doc->last_modified = $theme['time_last'];
}
$listing->display(__('Тем не найдено'));
$pages->display('?');
$doc->ret(__('Форум'), './');