Размер файла: 1.76Kb
- <?php
- /**********************************
- * @package: PerfCMS *
- * @year: 2012 *
- * @author: Artas *
- * @link: http://perfcms.pp.ua *
- **********************************/
- $locate = 'in_forum';
-
-
- $title = $lang->word('new_topics').' | '.$lang->word('forum');
- require_once(SYS.'/view/header.php');
- $tpl->div('title', $lang->word('new_topics').' | '.$lang->word('forum'));
- $topic_r = $db->query("SELECT * FROM `forum_t` WHERE `time_last_post` > '". (time()-60*60*24) ."'")->rowCount();
- $pages = new Paginator($topic_r, $ames);
- if($topic_r == 0) {
- echo $tpl->div('menu', $lang->word('no_posts'));
- }
- else {
- $topic_q = $db->query("SELECT * FROM `forum_t` WHERE `time_last_post` > '". (time()-60*60*24) ."' ORDER BY time_last_post DESC LIMIT $start, $ames");
- while($topic = $topic_q->fetch()) {
- echo '<div class="post">';
- if ($topic['closed'] == 1 && $topic['attach'] == 1) echo img('pin-closed.png');
- else if ($topic['attach'] == 1) echo img('pin.png');
- else if ($topic['closed'] == 1) echo img('topic_closed.png');
- else echo img('topic.png');
- $topic_a = $db->query("SELECT * FROM `forum_pt` WHERE `topic_id` = '". $topic['id']."' ORDER BY time DESC LIMIT 1")->fetch();
- echo '<a href="/forum/topic'. $topic['id'] .'/">'. $topic['name'] .'</a> ('. $db->query("SELECT id FROM `forum_pt` WHERE `topic_id` = '". $topic['id'] ."'")->rowCount().')<a href="/forum/topic'. $topic['id'] .'/?page=end">»</a> <br/> [<small class="gray">'. tnick($topic_a['user_id']).' / '. rtime($topic_a['time']).'</small>]
- </div>';
- }
- $pages->view('/forum/new_topics/?');
- }
- $tpl->div('block', NAV . ' <a href="/forum/">'. $lang->word('forum') .'</a><br/>' . HICO .' <a href="/">'. $lang->word('home') .'</a>');
- require_once(SYS.'/view/footer.php');
- ?>