http://phpbb-tw.net/phpbb/viewtopic.php?t=15769
這個 Recent Topics 第三版是 phpbbhacks 的 Acid 製作的最新版
功能與各位在 plus 上面看到的一樣,而且比 Latest Topic 功能還強
可以顯示文章種類(公告,置頂,鎖定等),
而且沒有觀看權限的文章/版面將不會讓會員看到
代碼: 選擇全部
#####################################################################################
## Hack Title: Recent Topics (third version)
## Hack Version: 1.0.3 (phpBB 2.0.4 or lower)
## Author: Acid
## Credits: Matt Slovig (prior 2.x-Script) | Philip Mayer (original 1.4x-Script)
## Support: http://www.phpbbhacks.com/forums/
##
## Description: Shows recent topics on an extra site (last 24 hour, last week,
## yesterday, last x days, today).
##
## Files to edit: 3
## language/lang_english/lang_main.php
## includes/page_header.php
## templates/subSilver/index_body.tpl
##
## new Files: 2
## recent.php
## templates/xxx/recent_body.tpl
##
#####################################################################################
##
## Installation/Author Notes:
## First always make a back-up from the files that you're going to edit.
##
## to edit the length of the topic title open recent.php
## and change the value in the first line.
##
#####################################################################################
##
## Versionen:
##
## v1.0.3
## - the name entered by a guest will be displayed now
## v1.0.2
## - some cosmetic changings
## v1.0.1
## - auth settings fixed
## v1.0.0
## - Release
##
##########################################################################################
lang_main.php
代碼: 選擇全部
//Recent Topics 1.2.2 by LERA X
$lang['Recent_topics'] = '檢視近日發表的文章';
$lang['Recent_today'] = '今天';
$lang['Recent_yesterday'] = '昨天';
$lang['Recent_last24'] = '在 24 小時內發表';
$lang['Recent_lastweek'] = '最近一週';
$lang['Recent_lastXdays'] = '最近 %s 天內';
$lang['Recent_last'] = '最近';
$lang['Recent_days'] = '天內';
$lang['Recent_first'] = '開始於 %s';
$lang['Recent_first_poster'] = ' 發表人: %s';
$lang['Recent_select_mode'] = '顯示主題:';
$lang['Recent_showing_posts'] = '顯示中:';
$lang['Recent_title_one'] = '總共有 <font>%s</font> 篇主題 %s'; // %s = topics; %s = sort method
$lang['Recent_title_more'] = '總共有 <font>%s</font> 篇主題 %s'; // %s = topics; %s = sort method
$lang['Recent_title_today'] = ' 在今天內發表';
$lang['Recent_title_yesterday'] = ' 在昨天內發表';
$lang['Recent_title_last24'] = ' 在 24 小時內發表';
$lang['Recent_title_lastweek'] = ' 在上週內發表';
$lang['Recent_title_lastXdays'] = ' 在 %s 天內發表'; // %s = days
$lang['Recent_no_topics'] = '沒有主題在你所選的時間發表';
$lang['Recent_wrong_mode'] = '沒有您所選擇的顯示模式';
$lang['Recent_click_return'] = '按 %shere%s 回到 檢視近日發表的文章 的頁面';