1 頁 (共 1 頁)

[問題] 如何增加 bbcodes [you] ?(已解決)

發表於 : 2005-03-05 01:57
laocung
這個code的功能就是在文章內使用後
隨著觀看者的不同就顯示其名字在文章中這裡\r
感覺就像是在特別對他發文一樣\r
可以教一下怎麼裝嘛 ! 謝謝 !

發表於 : 2005-03-05 02:16
黑風凱特
不會新增標籤在發文區上方 :mrgreen: ....
管理員可以拿來嚇嚇會員 :oops:

代碼: 選擇全部

############################################################## 
## MOD Title: You BBCode 
## MOD Author: wGEric < eric@egcnetwork.com > (Eric) http://eric.best-1.biz 
## MOD Description: Adds a BBCode that puts the username of the person viewing the 
##                  post where you add 黑風凱特 to your post. 
## MOD Version: 1.0.1 
## 
## Installation Level: (Easy) 
## Installation Time: 5 Minutes 
## Files To Edit: - includes/bbcode.php 
##                - templates/subSilver/bbcode.tpl 
## 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: 
##         You must have Multiple BBCode MOD installed for this to work. 
##      Get it here: http://www.phpbb.com/phpBB/viewtopic.php?t=74705 
## 
##      example: 
##        'Hi 黑風凱特' will display 'Hi Eric' or 'Hi Bob'.  It depends on who 
##      is viewing the topic. 
## 
############################################################## 
## MOD History: 
## 
##   2003-10-06 - Version 1.0.1 
##              - Fixes a bug 
## 
##   2003-09-17 - Version 1.0.0 
##         - First Release 
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

# 
#-----[ OPEN ]------------------------------------------ 
# 
includes/bbcode.php 

# 
#-----[ FIND ]------------------------------------------ 
# 
   $bbcode_tpl['email'] = str_replace('{EMAIL}', '\\\1', $bbcode_tpl['email']); 
# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

  global $userdata; 
  $bbcode_tpl['you'] = str_replace('{YOU}', "'" . $userdata['username'] . "'", $bbcode_tpl['you']); 
# 
#-----[ FIND ]------------------------------------------ 
# 
   $replacements[] = $bbcode_tpl['email']; 
# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
    
   // 黑風凱特 - inserts the name of the person viewing the post 
   $patterns[] = "#\[you\]#ise"; 
   $replacements[] = $bbcode_tpl['you']; 
# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/bbcode.tpl 
    
# 
#-----[ FIND ]------------------------------------------ 
# 
<!-- BEGIN email --><a href="mailto:{EMAIL}">{EMAIL}</A><!-- END email --> 
# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

<!-- BEGIN you -->{YOU}<!-- END you --> 
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM

發表於 : 2005-03-05 16:36
laocung
感謝 黑風大大 !

發表於 : 2005-03-05 17:13
bc010843
有沒有DOMO可看?
謝謝

發表於 : 2005-03-15 02:18
g53123

代碼: 選擇全部

# 
#-----[ OPEN ]------------------------------------------ 
# 
includes/bbcode.php 

# 
#-----[ FIND ]------------------------------------------ 
# 
   $bbcode_tpl['email'] = str_replace('{EMAIL}', '\\\1', $bbcode_tpl['email']); 
# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

  global $userdata; 
  $bbcode_tpl['you'] = str_replace('{YOU}', "'" . $userdata['username'] . "'", $bbcode_tpl['you']); 
# 
#-----[ FIND ]------------------------------------------ 
# 
   $replacements[] = $bbcode_tpl['email']; 
# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
    
   // 黑風凱特 - inserts the name of the person viewing the post 
   $patterns[] = "#\[you\]#ise"; 
   $replacements[] = $bbcode_tpl['you']; 
# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/bbcode.tpl 
    
# 
#-----[ FIND ]------------------------------------------ 
# 
<!-- BEGIN email --><a href="mailto:{EMAIL}">{EMAIL}</A><!-- END email --> 
# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

<!-- BEGIN you -->{YOU}<!-- END you --> 
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM
請問..[ AFTER, ADD ]是加在後面嗎?
我沒空格加在後面,但是bbcode版面沒變耶!

發表於 : 2005-03-15 08:39
黑風凱特
g53123 寫:請問..[ AFTER, ADD ]是加在後面嗎?
我沒空格加在後面,但是bbcode版面沒變耶!
bbcode版面當然不會增加...

因為根本沒改 :mrgreen: ....

這是給站長玩玩的.... :mrgreen: ...

你只要在發文時加上[you],就會出來了~

其實~如果有[ AFTER, ADD ]時,我習慣都會按個enter貼上~

除非是in line AFTER,ADD,才會直接貼在後面...

美觀且往後要找也不會一團亂... :oops:

發表於 : 2005-03-15 20:17
g53123
謝謝黑風~果然是有出來!^^
可是如果要讓它在BBcode呈現還需要改哪?
圖檔
From:XDER.net