[外掛]Forum Hotviews--版面觀看數

MODs Released by Other phpbb Sites
非官方認證通過之 MOD ,或許有安全性之疑慮,所有問題由原發表者回覆!

版主: 版主管理群

主題已鎖定
Martinet
竹貓忠實會員
竹貓忠實會員
文章: 850
註冊時間: 2003-06-09 21:58
聯繫:

[外掛]Forum Hotviews--版面觀看數

文章 Martinet »

代碼: 選擇全部

################################################################################### 
## 
## 外掛名稱:      Forum Hotviews 
## 外掛版本:      1.0.0 
## 外掛作者:      Martinet Oaf <oafwork@hotmail.com > http://oafwork.twbbs.org/letstalk/ 
## 
## 外掛描述:  在首頁增加一個版面觀看數....這個掛上去之後用處不大 , 但是為以後作「熱門版面」功能所必須:P     
##                  
##                    
## 
## 安裝難度:      簡單 
## 安裝時間:      3 分鐘 
## 
## 需要編輯的檔案:   3
##    viewforum.php 
##    index.php
##    templates/your_template/index_body.tpl 
##    languages/your_language/lang_main.php
##
################################################################################### 
## 
## 作者留言: 
##  應該沒啥問題了...反正這東西很簡單的XD 
## 
## 
################################################################################### 
## 
## 版本歷史: 
## 
##   2004-02-8 - v1.0.0 
##      - 首次發佈 
## 
################################################################################### 
## 在增加此外掛前, 請務必備份所有需要修改的檔案 
###################################################################################
ScreenShot:
圖檔


SQL語法
===================================
ALTER TABLE `phpbb_forums` ADD `hot_views` INT( 15 ) DEFAULT '0' NOT NULL ;
===================================


打開 viewforum.php

找到\r

//
// Start session management
//

前面加上

$sql = "UPDATE `phpbb_forums`
SET `hot_views` = '".($forum_row['hot_views']+1)."'
WHERE `forum_id` = '$forum_id'";
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'failed updating forum hot views', '', __LINE__, __FILE__, $sql);
}


打開 index.php

找到\r
'L_VIEWS' => $lang['Views'],
下面加上
'L_HOTVIEWS' => $lang['forum_hotviews'],

\n找到\r
'MODERATORS' => $moderator_list,

下面加上
'HOT_VIEWS' => $forum_data[$j]['hot_views'],

打開 templates/your_template/index_body.tpl

找到\r
<th width="50" class="thTop" nowrap="nowrap"> {L_POSTS} </th>

下面加上
<th width="60" class="thTop" nowrap="nowrap"> {L_HOTVIEWS} </th>

找到\r
<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>

下面加上

<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.HOT_VIEWS}</span></td>

打開 languages/your_language/lang_main.php

找到\r
//
// That's all Folks!
// -------------------------------------------------

前面加上

$lang['forum_hotviews'] = '點擊數';
主題已鎖定

回到「非官方認證外掛」