Файл: modules/forum/index.php
Строк: 33
<?php
if(isset($user)) {
$locate = 'in_forum';
$title = $lang->word('forum');
require_once(SYS.'/view/header.php');
$tpl->div('title', $lang->word('forum'));
$tpl->div('post','Новые: <a href="/forum/new_topics/">'. $lang->word('new_topics').'</a> | '.'<a href="/forum/new_posts/">'. $lang->word('new_messages').'</a> | ' .' <a href="/forum/search">'. $lang->word('search') .'</a>' .($user['level'] >=6 ? ' | <a href="/forum/add_forum/">'. $lang->word('create_forum') .'</a><br/>' : NULL));
$forums_r = $db->query("SELECT * FROM `forum`")->rowCount();
if($forums_r == 0) {
echo $tpl->div('menu', $lang->word('no_forums'));
}
else {
$forums_q = $db->query("SELECT * FROM `forum` ORDER BY pos");
while($forums = $forums_q->fetch()) {
$tpl->div('menu', img('forum_1.png') .' <a href="/forum/'. $forums['id'] .'/">'. $forums['name'] .'</a> ['. $db->query("SELECT * FROM `forum_c` WHERE `f_id` = '". $forums['id'] ."'")->rowCount() .']' . ($user['level'] >= 6 ? ' <span style="float:right">( <a href="/forum/delete_forum/'.$forums['id'].'/">'.img('delete_11.png').'</a> | <a href="/forum/edit_forum/'.$forums['id'].'/">'.img('edit_11.png').'</a> )</span>' : NULL) .'<br/>
<small>'.$forums['desc'].'</small>');
}
}
$tpl->div('block',HICO .' <a href="/">'. $lang->word('home') .'</a>');
require_once(SYS.'/view/footer.php');
} else {
$title = 'Форум';
require_once(SYS.'/view/header.php');
$tpl->div('title', 'Форум');
$tpl->div('menu', '<center>Форум доступен только зарегистрированным пользователям!</center>');
$tpl->div('block',HICO .'<a href="/">'. $lang->word('home').'</a>');
require_once(SYS.'/view/footer.php');
}
?>