1 頁 (共 1 頁)

[外掛] 隨機logo變換

發表於 : 2005-09-07 10:57
eMax
Function:
點擊Index(首頁)時,變換各種不同的指定Logo圖片

代碼: 選擇全部

##########################################################################
## MOD Title       : Random php Based Forum's Logo (JPG Format)
## MOD Author      : DarkPepe <darkpepe@gmail.com> (N/A) http://www.bf1942.cl 
## MOD Description : This Little script allows to change randomly your
##		     forum's logo on every refresh of the page. You can customize
##                   the script to allow gif or jpg format (by default is jpg,
##                   read Author Notes).  
##
## MOD Version     : 1.0.0 
## 
## Installation Level : Easy
## Installation Time  : 2 Minutes 
##
## Files To Edit (1)  : templates/subsilver/overall_header.tpl
##		        
## Included Files (1) : templates/subsilver/images/random_logo/logo.php
## 		        
##
##########################################################################
## 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: This is the first release of this mod.
## To make the mod Work, you have to Upload all your logos on jpg format to
## /templates/subsilver/images/random_logo/
## 
## Read install_random_gif_logo.txt for Gif logos instead of jpg.
##########################################################################
## MOD History: 
## 
##   2004-09-05 - Version 0.0.1 
##      - First Release 
##   2004-05-07 - Version 1.0.0
##      - Mod Template Correction
##########################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##########################################################################
相關頁面: http://www.phpbb.com/phpBB/viewtopic.php?t=228566
官方檔案下載連結以失效,請連結下列地址: http://www.bf1942.cl/images/pepe/mod_ph ... ogo_v1.zip
小叮嚀:
1.外掛代碼的subSilver請更換自己的風格名稱如:

代碼: 選擇全部

<a href="{U_INDEX}"><img src="templates/subSilver(請更換自己風格的名稱)/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a>
2.完成安裝後,將要的圖片傳到template/風格名稱/images/random_logo裡\r
3.該外掛只提共jpg檔,如果需要支援gif檔,請更換代碼如下。
#
#-----[ OPEN ]------------------------------------------------------------
#

代碼: 選擇全部

/templates/subsilver/images/random_logo/logo.php
#
#-----[ FIND ]------------------------------------------------------------
#

代碼: 選擇全部

if (preg_match('/\.jpg$/i', $file) and $file != "logo.jpg")
#
#-----[ REPLACE WITH ]------------------------------------------------------------
#

代碼: 選擇全部

if (preg_match('/\.gif$/i', $file) and $file != "logo.gif")
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------------------
#
# EoM
:mrgreen: