⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 active.php

📁 国外非常不错的论坛
💻 PHP
字号:
<?php/*	Copyright (C) 2003-2005 UseBB Team	http://www.usebb.net		$Header: /cvsroot/usebb/UseBB/active.php,v 1.28 2005/07/23 12:48:49 pc_freak Exp $		This file is part of UseBB.		UseBB is free software; you can redistribute it and/or modify	it under the terms of the GNU General Public License as published by	the Free Software Foundation; either version 2 of the License, or	(at your option) any later version.		UseBB is distributed in the hope that it will be useful,	but WITHOUT ANY WARRANTY; without even the implied warranty of	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the	GNU General Public License for more details.		You should have received a copy of the GNU General Public License	along with UseBB; if not, write to the Free Software	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/define('INCLUDED', true);define('ROOT_PATH', './');//// Include usebb engine//require(ROOT_PATH.'sources/common.php');$session->update('activetopics');//// Include the page header//require(ROOT_PATH.'sources/page_head.php');if ( !$functions->get_stats('topics') ) {		//	// No active topics	//	$template->set_page_title($lang['Note']);	$template->parse('msgbox', 'global', array(		'box_title' => $lang['Note'],		'content' => $lang['NoActivetopics']	));	} else {		$exclude_forums = $functions->get_config('exclude_forums_active_topics');	$exclude_forums_query_part = ( is_array($exclude_forums) && count($exclude_forums) ) ? " AND id NOT IN (".join(', ', $exclude_forums).")" : '';		//	// Get a list of forums	//	$result = $db->query("SELECT id, name, auth FROM ".TABLE_PREFIX."forums WHERE topics > 0".$exclude_forums_query_part);		$forum_ids = $forum_names = array();	while ( $forumdata = $db->fetch_result($result) ) {				//		// Place permitted forums into the arrays		//		if ( $functions->auth($forumdata['auth'], 'read', $forumdata['id']) ) {						$forum_ids[] = $forumdata['id'];			$forum_names[$forumdata['id']] = $forumdata['name'];					}			}	if ( !count($forum_ids) ) {				//		// No active topics		//		$template->set_page_title($lang['Note']);		$template->parse('msgbox', 'global', array(			'box_title' => $lang['Note'],			'content' => $lang['NoActivetopics']		));			} else {				//		// Parse the active topics list		//				$template->set_page_title($lang['ActiveTopics']);				$query = "SELECT t.id, t.forum_id, t.topic_title, t.last_post_id, t.count_replies, t.count_views, t.status_locked, t.status_sticky, p.poster_guest, p2.poster_guest AS last_poster_guest, p2.post_time AS last_post_time, u.id AS poster_id, u.displayed_name AS poster_name, u.level AS poster_level, u2.id AS last_poster_id, u2.displayed_name AS last_poster_name, u2.level AS last_poster_level FROM ".TABLE_PREFIX."topics t, ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."members u ON p.poster_id = u.id, ".TABLE_PREFIX."posts p2 LEFT JOIN ".TABLE_PREFIX."members u2 ON p2.poster_id = u2.id WHERE t.forum_id IN(".join(', ', $forum_ids).") AND p.id = t.first_post_id AND p2.id = t.last_post_id ORDER BY p2.post_time DESC LIMIT ".$functions->get_config('active_topics_count');				$template->parse('header', 'activetopics');				$result = $db->query($query);				while ( $topicdata = $db->fetch_result($result) ) {						//			// Loop through the topics, generating output...			//			$topic_name = '<a href="'.$functions->make_url('topic.php', array('id' => $topicdata['id'])).'">'.unhtml($functions->replace_badwords(stripslashes($topicdata['topic_title']))).'</a>';			if ( $topicdata['status_sticky'] )				$topic_name = $lang['Sticky'].': '.$topic_name;			$last_post_author = ( $topicdata['last_poster_id'] > LEVEL_GUEST ) ? $functions->make_profile_link($topicdata['last_poster_id'], $topicdata['last_poster_name'], $topicdata['last_poster_level']) : $topicdata['last_poster_guest'];						list($topic_icon, $topic_status) = $functions->topic_icon($topicdata['id'], $topicdata['status_locked'], $topicdata['last_post_time']);						if ( $topic_status == $lang['NewPosts'] || $topic_status == $lang['LockedNewPosts'] ) {								$topic_name = sprintf($template->get_config('newpost_link_format'), $functions->make_url('topic.php', array('id' => $topicdata['id'], 'act' => 'getnewpost')).'#newpost', 'templates/'.$functions->get_config('template').'/gfx/'.$template->get_config('newpost_link_icon'), $topic_status) . $topic_name;							}						//			// Parse the topic template			//			$template->parse('topic', 'activetopics', array(				'topic_icon' => $topic_icon,				'topic_status' => $topic_status,				'topic_name' => $topic_name,				'topic_page_links' => ( $topicdata['count_replies']+1 > $functions->get_config('posts_per_page') ) ? $functions->make_page_links(ceil(intval($topicdata['count_replies']+1) / $functions->get_config('posts_per_page')), '0', $topicdata['count_replies']+1, $functions->get_config('posts_per_page'), 'topic.php', $topicdata['id'], false) : '',				'forum' => '<a href="'.$functions->make_url('forum.php', array('id' => $topicdata['forum_id'])).'">'.unhtml(stripslashes($forum_names[$topicdata['forum_id']])).'</a>',				'author' => ( $topicdata['poster_id'] > LEVEL_GUEST ) ? $functions->make_profile_link($topicdata['poster_id'], $topicdata['poster_name'], $topicdata['poster_level']) : unhtml(stripslashes($topicdata['poster_guest'])),				'replies' => $topicdata['count_replies'],				'views' => $topicdata['count_views'],				'author_date' => sprintf($lang['AuthorDate'], $last_post_author, $functions->make_date($topicdata['last_post_time'])),				'by_author' => sprintf($lang['ByAuthor'], $last_post_author),				'on_date' => sprintf($lang['OnDate'], $functions->make_date($topicdata['last_post_time'])),				'last_post_url' => $functions->make_url('topic.php', array('post' => $topicdata['last_post_id'])).'#post'.$topicdata['last_post_id']			));					}				$template->parse('footer', 'activetopics');			}	}	//// Include the page footer//require(ROOT_PATH.'sources/page_foot.php');?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -