Blame Extras/phpBB/3.0.4/index.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* @package phpBB3
4c79b5
* @version $Id: index.php 8987 2008-10-09 14:17:02Z acydburn $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* @ignore
4c79b5
*/
4c79b5
define('IN_PHPBB', true);
4c79b5
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
4c79b5
$phpEx = substr(strrchr(__FILE__, '.'), 1);
4c79b5
include($phpbb_root_path . 'common.' . $phpEx);
4c79b5
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
4c79b5
4c79b5
// Start session management
4c79b5
$user->session_begin();
4c79b5
$auth->acl($user->data);
4c79b5
$user->setup('viewforum');
4c79b5
4c79b5
display_forums('', $config['load_moderators']);
4c79b5
4c79b5
// Set some stats, get posts count from forums data if we... hum... retrieve all forums data
4c79b5
$total_posts	= $config['num_posts'];
4c79b5
$total_topics	= $config['num_topics'];
4c79b5
$total_users	= $config['num_users'];
4c79b5
4c79b5
$l_total_user_s = ($total_users == 0) ? 'TOTAL_USERS_ZERO' : 'TOTAL_USERS_OTHER';
4c79b5
$l_total_post_s = ($total_posts == 0) ? 'TOTAL_POSTS_ZERO' : 'TOTAL_POSTS_OTHER';
4c79b5
$l_total_topic_s = ($total_topics == 0) ? 'TOTAL_TOPICS_ZERO' : 'TOTAL_TOPICS_OTHER';
4c79b5
4c79b5
// Grab group details for legend display
4c79b5
if ($auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel'))
4c79b5
{
4c79b5
	$sql = 'SELECT group_id, group_name, group_colour, group_type
4c79b5
		FROM ' . GROUPS_TABLE . '
4c79b5
		WHERE group_legend = 1
4c79b5
		ORDER BY group_name ASC';
4c79b5
}
4c79b5
else
4c79b5
{
4c79b5
	$sql = 'SELECT g.group_id, g.group_name, g.group_colour, g.group_type
4c79b5
		FROM ' . GROUPS_TABLE . ' g
4c79b5
		LEFT JOIN ' . USER_GROUP_TABLE . ' ug
4c79b5
			ON (
4c79b5
				g.group_id = ug.group_id
4c79b5
				AND ug.user_id = ' . $user->data['user_id'] . '
4c79b5
				AND ug.user_pending = 0
4c79b5
			)
4c79b5
		WHERE g.group_legend = 1
4c79b5
			AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
4c79b5
		ORDER BY g.group_name ASC';
4c79b5
}
4c79b5
$result = $db->sql_query($sql);
4c79b5
4c79b5
$legend = array();
4c79b5
while ($row = $db->sql_fetchrow($result))
4c79b5
{
4c79b5
	$colour_text = ($row['group_colour']) ? ' style="color:#' . $row['group_colour'] . '"' : '';
4c79b5
	$group_name = ($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name'];
4c79b5
4c79b5
	if ($row['group_name'] == 'BOTS' || ($user->data['user_id'] != ANONYMOUS && !$auth->acl_get('u_viewprofile')))
4c79b5
	{
4c79b5
		$legend[] = '<span' . $colour_text . '>' . $group_name . '';
4c79b5
	}
4c79b5
	else
4c79b5
	{
4c79b5
		$legend[] = '<a' . $colour_text . ' href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&g=' . $row['group_id']) . '">' . $group_name . '';
4c79b5
	}
4c79b5
}
4c79b5
$db->sql_freeresult($result);
4c79b5
4c79b5
$legend = implode(', ', $legend);
4c79b5
4c79b5
// Generate birthday list if required ...
4c79b5
$birthday_list = '';
4c79b5
if ($config['load_birthdays'] && $config['allow_birthdays'])
4c79b5
{
4c79b5
	$now = getdate(time() + $user->timezone + $user->dst - date('Z'));
4c79b5
	$sql = 'SELECT user_id, username, user_colour, user_birthday
4c79b5
		FROM ' . USERS_TABLE . "
4c79b5
		WHERE user_birthday LIKE '" . $db->sql_escape(sprintf('%2d-%2d-', $now['mday'], $now['mon'])) . "%'
4c79b5
			AND user_type IN (" . USER_NORMAL . ', ' . USER_FOUNDER . ')';
4c79b5
	$result = $db->sql_query($sql);
4c79b5
4c79b5
	while ($row = $db->sql_fetchrow($result))
4c79b5
	{
4c79b5
		$birthday_list .= (($birthday_list != '') ? ', ' : '') . get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']);
4c79b5
4c79b5
		if ($age = (int) substr($row['user_birthday'], -4))
4c79b5
		{
4c79b5
			$birthday_list .= ' (' . ($now['year'] - $age) . ')';
4c79b5
		}
4c79b5
	}
4c79b5
	$db->sql_freeresult($result);
4c79b5
}
4c79b5
4c79b5
// Assign index specific vars
4c79b5
$template->assign_vars(array(
4c79b5
	'TOTAL_POSTS'	=> sprintf($user->lang[$l_total_post_s], $total_posts),
4c79b5
	'TOTAL_TOPICS'	=> sprintf($user->lang[$l_total_topic_s], $total_topics),
4c79b5
	'TOTAL_USERS'	=> sprintf($user->lang[$l_total_user_s], $total_users),
4c79b5
	'NEWEST_USER'	=> sprintf($user->lang['NEWEST_USER'], get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])),
4c79b5
4c79b5
	'LEGEND'		=> $legend,
4c79b5
	'BIRTHDAY_LIST'	=> $birthday_list,
4c79b5
4c79b5
	'FORUM_IMG'				=> $user->img('forum_read', 'NO_NEW_POSTS'),
4c79b5
	'FORUM_NEW_IMG'			=> $user->img('forum_unread', 'NEW_POSTS'),
4c79b5
	'FORUM_LOCKED_IMG'		=> $user->img('forum_read_locked', 'NO_NEW_POSTS_LOCKED'),
4c79b5
	'FORUM_NEW_LOCKED_IMG'	=> $user->img('forum_unread_locked', 'NO_NEW_POSTS_LOCKED'),
4c79b5
4c79b5
	'S_LOGIN_ACTION'			=> append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'),
4c79b5
	'S_DISPLAY_BIRTHDAY_LIST'	=> ($config['load_birthdays']) ? true : false,
4c79b5
4c79b5
	'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') : '',
4c79b5
	'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) : '')
4c79b5
);
4c79b5
4c79b5
// Output page
4c79b5
page_header($user->lang['INDEX']);
4c79b5
4c79b5
$template->set_filenames(array(
4c79b5
	'body' => 'index_body.html')
4c79b5
);
4c79b5
4c79b5
page_footer();
4c79b5
4c79b5
?>