[推薦] Author Hyperlink 1.01

Officially Approved MODs
由 phpBB Group 官方發展小組認證的 MOD!

版主: 版主管理群

版面規則
請注意!只有發表在 [2.0.x] MOD Database Releases 的外掛,才算是官方認證的外掛。
主題已鎖定
kungbernard
星球普通子民
星球普通子民
文章: 28
註冊時間: 2005-05-06 23:25

[推薦] Author Hyperlink 1.01

文章 kungbernard »

原本要看發post 及回post 者的資料很麻煩,這個mod 可以直接按發post 者的名 看他的資料

(不知有否post 過…不過這mod 很好用喔~~)

代碼: 選擇全部

############################################################## 
## MOD Title: Author Hyperlink
## MOD Author: tosspot <tosspot@markf.mailshell.com> Mark Fyvie http://www.fyvie.net
## MOD Description: By default the author name in a message is not a hyperlink. This mod makes 
## it a URL to the poster's profile. This might be more intuitive for some users compared to the profile button.
## MOD Version: 1.0.1 
## 
## Installation Level: easy 
## Installation Time: 1 Minute 
## Files To Edit: viewtopic.php 
## Included Files: n/a 
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
############################################################## 
## Author Notes: 
## The default colour for the author before applying this mod is black. After applying the mod it will be blue, since it
## is following the "genmed" class. Feel free to modify this part to another class, or to add an additional class if you don't
## like the colour. You will find a discussion on this here:
## http://www.phpbb.com/phpBB/viewtopic.php?t=102833
############################################################## 
## MOD History: 
#
## 2003-05-19 - Version 1.0.0
## - Initial version
## 2003.09.13 - Version 1.0.1
## - Tested for phpBB v2.06
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 
# 
下面係program~~好簡單的…\r

代碼: 選擇全部

#-----[ OPEN ]------------------------------------------ 
# 
viewtopic.php
# 
#-----[ FIND ]------------------------------------------ 
# 
	$poster = ( $poster_id == ANONYMOUS ) ? $lang['Guest'] : $postrow[$i]['username'];
# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
	$poster = ( $poster_id != ANONYMOUS ) ? '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $poster_id) . '" class="genmed">' : '';
	$poster .= ( $poster_id != ANONYMOUS ) ? $postrow[$i]['username'] : ( ( $postrow[$i]['post_username'] != '' ) ? $postrow[$i]['post_username'] : $lang['Guest'] );
	$poster .= ( $poster_id != ANONYMOUS ) ? '</a>' : '';
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM 

代碼: 選擇全部

代碼: 選擇全部

主題已鎖定

回到「官方認證外掛」