<?php
/**
*
* @package phpBB3
* @version $Id: index.php 9614 2009-06-18 11:04:54Z nickvergessen $
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*/
/**
* @ignore
*/
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewforum');
display_forums('', FALSE, FALSE); // 7.06.2010: Не показывать список модераторов, не смотря на $config['load_moderators']
display_announcements(); // 7.06.2010: Вывод списка глобальных анонсов
display_rubricator(); // 7.06.2010: Рубрикатор для отображения списка форумов в виде колонок
// Set some stats, get posts count from forums data if we... hum... retrieve all forums data
// Часть информации кэшируется (то, что в $config), если кэш включён
$total_posts = $config['num_posts'];
$total_topics = $config['num_topics'];
$total_users = $config['num_users'];
$l_total_user_s = ($total_users == 0) ? 'TOTAL_USERS_ZERO' : 'TOTAL_USERS_OTHER';
$l_total_post_s = ($total_posts == 0) ? 'TOTAL_POSTS_ZERO' : 'TOTAL_POSTS_OTHER';
$l_total_topic_s = ($total_topics == 0) ? 'TOTAL_TOPICS_ZERO' : 'TOTAL_TOPICS_OTHER';
// Assign index specific vars
$template->assign_vars(array(
'TOTAL_POSTS' => $total_posts,
'TOTAL_TOPICS' => $total_topics,
'TOTAL_USERS' => $total_users,
'NEWEST_USER' => get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour']),
'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'hash=' . generate_link_hash('global') . '&mark=forums') : '',
'U_MCP' => ($auth->acl_get('m_') || $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=main&mode=front', true, $user->session_id) : '',
'S_LOGIN_ACTION'=> append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'),
));
// Output page
page_header($user->lang['INDEX']);
$template->set_filenames(array(
'body' => $project == 'baraholka' ? 'fleamarket/index.html' : 'index_body.html'
));
page_footer();