[alpha]Top5 MOD 後臺版(V2.0.0)
發表於 : 2008-04-23 17:21
外掛名稱:phpBB3 TOP5
外掛作者:Bamboocat Digital Corp.
外掛版本:2.0.0
外掛描述:各位 TOP5 愛好者,這版是後台版,可以完全在後台進行管理了,歡迎大家使用並回報問題。
外掛下載:
Top5 MOD 後臺版(V2.0.0)下載點
--
討論串請參考下列連結:
http://phpbb-tw.net/phpbb/viewtopic.php?f=133&t=50642
--
安裝方法:
STEP 1:
Copy the files in the folder that names TW or EN to your phpBB3 path.
STEP 2:
Edit Files
#
#-----[ OPEN ]-----------------------------
#
includes/constants.php
#
#-----[ FIND ]-----------------------------
#
// Additional tables
#
#-----[ AFTER, ADD ]-----------------------
#
//top5 rss mod
define('PODS_TABLE', $table_prefix . 'pods');
//top5 rss mod
#
#-----[ OPEN ]-----------------------------
#
includes/functions.php
#
#-----[ FIND ]-----------------------------
#
// application/xhtml+xml not used because of IE
header('Content-type: text/html; charset=UTF-8');
#
#-----[ BEFORE, ADD ]----------------------
#
//top5 rss mod
if(isset($config['top5rss_version']))
{
$sql = "SELECT COUNT(pod_id) AS num_pods FROM " . PODS_TABLE . " WHERE pod_type > 0";
$result = $db->sql_query($sql);
$pods_count = (int) $db->sql_fetchfield('num_pods');
if($pods_count)
{
$template->assign_vars(array(
'S_TOP5' => true,
)
);
}
}
//top5 rss mod
#
#-----[ OPEN ]-----------------------------
#
styles/prosilver/template/index_body.html
#
#-----[ FIND ]-----------------------------
#
<!-- IF U_MCP --><p>{CURRENT_TIME} <br />[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ELSEIF S_USER_LOGGED_IN --><p>{CURRENT_TIME}</p><!-- ENDIF -->
#
#-----[ AFTER, ADD ]-----------------------
#
<!-- phpBB3_top5_mod -->
<!-- IF S_TOP5 -->
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script type="text/javascript">
AC_FL_RunContent( 'id','phpbb3_top5','width','100%','height','280','codebase','http://fpdownload.macromedia.com/get/fl ... sameDomain' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id="phpbb3_top5" width="100%" height="280"
codebase="http://fpdownload.macromedia.com/get/fl ... wflash.cab">
<param name="movie" value="phpbb3_top5.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="allowScriptAccess" value="sameDomain" />
<embed src="phpbb3_top5.swf" quality="high" bgcolor="#ffffff"
width="100%" height="280" name="phpbb3_top5" align="middle"
play="true"
loop="false"
quality="high"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed>
</object></noscript>
<!-- ENDIF -->
<!-- phpBB3_top5_mod -->
#
#-----[ SAVE/ CLOSE ALL FILES ]-------------
#
#EoM
版本更新歷程:
##############################################################
## Change Log
##
## 2008/04/01 1.0.1
## [ADD] Add language files, and you can translate to your language now.
## [ADD] Add "Last Replies" function.
## [FIX] Fix the style filename.
## [FIX] SWF - IncludeDesc function.
## [FIX] Recode RSS API; fix phpbb.com rss can not connection.
## [FIX] Google NEWS for EN. fix the Google News link path for English version.
##
## 2008/04/01 1.0.2
## [FIX] RSS API: Use XML Parser Libs(PHP4, 5) to replace simpleXML Libs(PHP5).
## [FIX] RSS API: fix taiwan.net.tw rss can not connection currently.
##
## 2008/04/02 1.1.0
## [ADD] SWF - Include Date function.
## [FIX] TOP5 RSS: List items in the range of 30 days.
##
## 2008/04/02 1.2.0
## [ADD] SWF - ToolTip function.
## [FIX] SWF - less than 5 items don't show Vertical Scroll Bar.
## [FIX] TOP5 RSS: List item post text in description tag.
## [REMOVE] TOP5 RSS: Language file
##
## 2008/04/03 1.3.0
## [FIX] SWF - The Bugs of ToolTip of RSS Pod.
## [FIX] Top5 RSS - Fix the link of Last Replies.
##
## 2008/04/04 1.4.0
## [ADD] SWF - Custom Color configuration.
##
## 2008/04/04 1.4.1
## [FIX] RSS API - Recoding with phpBB3 kernel, update the sercurity.
##
## 2008/04/04 1.5.0
## [ADD] SWF - Custom Color RegExp.
##
## 2008/04/05 1.5.1
## [FIX] Top5 RSS - Use phpBB3 permission setting to choose what forums will show. ('f_read' option)
##
## 2008/04/14 1.6.0
## [FIX] Top5 RSS - FIX some
## [ADD] Top5 RSS - Show Poster, Replies, Views infomation.
##
## 2008/04/14 2.0.0
## [ADD] ACP Controls.
##
##############################################################
外掛作者:Bamboocat Digital Corp.
外掛版本:2.0.0
外掛描述:各位 TOP5 愛好者,這版是後台版,可以完全在後台進行管理了,歡迎大家使用並回報問題。
外掛下載:
Top5 MOD 後臺版(V2.0.0)下載點
--
討論串請參考下列連結:
http://phpbb-tw.net/phpbb/viewtopic.php?f=133&t=50642
--
安裝方法:
STEP 1:
Copy the files in the folder that names TW or EN to your phpBB3 path.
STEP 2:
Edit Files
#
#-----[ OPEN ]-----------------------------
#
includes/constants.php
#
#-----[ FIND ]-----------------------------
#
// Additional tables
#
#-----[ AFTER, ADD ]-----------------------
#
//top5 rss mod
define('PODS_TABLE', $table_prefix . 'pods');
//top5 rss mod
#
#-----[ OPEN ]-----------------------------
#
includes/functions.php
#
#-----[ FIND ]-----------------------------
#
// application/xhtml+xml not used because of IE
header('Content-type: text/html; charset=UTF-8');
#
#-----[ BEFORE, ADD ]----------------------
#
//top5 rss mod
if(isset($config['top5rss_version']))
{
$sql = "SELECT COUNT(pod_id) AS num_pods FROM " . PODS_TABLE . " WHERE pod_type > 0";
$result = $db->sql_query($sql);
$pods_count = (int) $db->sql_fetchfield('num_pods');
if($pods_count)
{
$template->assign_vars(array(
'S_TOP5' => true,
)
);
}
}
//top5 rss mod
#
#-----[ OPEN ]-----------------------------
#
styles/prosilver/template/index_body.html
#
#-----[ FIND ]-----------------------------
#
<!-- IF U_MCP --><p>{CURRENT_TIME} <br />[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ELSEIF S_USER_LOGGED_IN --><p>{CURRENT_TIME}</p><!-- ENDIF -->
#
#-----[ AFTER, ADD ]-----------------------
#
<!-- phpBB3_top5_mod -->
<!-- IF S_TOP5 -->
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script type="text/javascript">
AC_FL_RunContent( 'id','phpbb3_top5','width','100%','height','280','codebase','http://fpdownload.macromedia.com/get/fl ... sameDomain' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id="phpbb3_top5" width="100%" height="280"
codebase="http://fpdownload.macromedia.com/get/fl ... wflash.cab">
<param name="movie" value="phpbb3_top5.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="allowScriptAccess" value="sameDomain" />
<embed src="phpbb3_top5.swf" quality="high" bgcolor="#ffffff"
width="100%" height="280" name="phpbb3_top5" align="middle"
play="true"
loop="false"
quality="high"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed>
</object></noscript>
<!-- ENDIF -->
<!-- phpBB3_top5_mod -->
#
#-----[ SAVE/ CLOSE ALL FILES ]-------------
#
#EoM
版本更新歷程:
##############################################################
## Change Log
##
## 2008/04/01 1.0.1
## [ADD] Add language files, and you can translate to your language now.
## [ADD] Add "Last Replies" function.
## [FIX] Fix the style filename.
## [FIX] SWF - IncludeDesc function.
## [FIX] Recode RSS API; fix phpbb.com rss can not connection.
## [FIX] Google NEWS for EN. fix the Google News link path for English version.
##
## 2008/04/01 1.0.2
## [FIX] RSS API: Use XML Parser Libs(PHP4, 5) to replace simpleXML Libs(PHP5).
## [FIX] RSS API: fix taiwan.net.tw rss can not connection currently.
##
## 2008/04/02 1.1.0
## [ADD] SWF - Include Date function.
## [FIX] TOP5 RSS: List items in the range of 30 days.
##
## 2008/04/02 1.2.0
## [ADD] SWF - ToolTip function.
## [FIX] SWF - less than 5 items don't show Vertical Scroll Bar.
## [FIX] TOP5 RSS: List item post text in description tag.
## [REMOVE] TOP5 RSS: Language file
##
## 2008/04/03 1.3.0
## [FIX] SWF - The Bugs of ToolTip of RSS Pod.
## [FIX] Top5 RSS - Fix the link of Last Replies.
##
## 2008/04/04 1.4.0
## [ADD] SWF - Custom Color configuration.
##
## 2008/04/04 1.4.1
## [FIX] RSS API - Recoding with phpBB3 kernel, update the sercurity.
##
## 2008/04/04 1.5.0
## [ADD] SWF - Custom Color RegExp.
##
## 2008/04/05 1.5.1
## [FIX] Top5 RSS - Use phpBB3 permission setting to choose what forums will show. ('f_read' option)
##
## 2008/04/14 1.6.0
## [FIX] Top5 RSS - FIX some
## [ADD] Top5 RSS - Show Poster, Replies, Views infomation.
##
## 2008/04/14 2.0.0
## [ADD] ACP Controls.
##
##############################################################