[外掛]Did You Know?

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

版主: 版主管理群

主題已鎖定
GeniusKiKi
竹貓忠實會員
竹貓忠實會員
文章: 1086
註冊時間: 2003-10-28 14:50

[外掛]Did You Know?

文章 GeniusKiKi »

來源:http://www.phpbbhacks.com/viewhack.php?id=2033

[php]## EasyMod 0.0.7 compliant
##############################################################
## MOD Title: Did you know? Box
## MOD Author: Dwing < dwing@weingarten-net.de > (Dimitri Seitz) http://www.dseitz.de
## MOD Description: This Hack will create a 'Did you know?' Box in the phpBB Header. Sentences can be set in the file schon_gewusst.txt
## MOD Version: 1.0.0
##
## Installation Level: easy
## Installation Time: 2 minutes
## Files To Edit: 2
## Included Files: schon_gewusst.txt
##############################################################
## Author Notes: Demo http://www.weingarten-net.de/static/modtest/ (german version)
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################[/php]

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

#
#-----[ FIND ]------------------------------------------
#
// Format Timezone. We are unable to use array_pop here, because of PHP3 compatibility
$l_timezone = explode('.', $board_config['board_timezone']);
$l_timezone = (count($l_timezone) > 1 && $l_timezone[count($l_timezone)-1] != 0) ? $lang[sprintf('%.1f', $board_config['board_timezone'])] : $lang[number_format($board_config['board_timezone'])];


#
#-----[ AFTER, ADD ]------------------------------------------
#
//
// Generate 'Did you know?'
//
$random_file = $phpbb_root_path . 'schon_gewusst.txt';
$random = file($random_file);

srand();
$randomizer = rand(0, count($random) );
$znumber = rand(1, 2);

if( !isset($random[$randomizer]) )
{
$random[$randomizer] = 'More Mods like this <a href="http://www.dseitz.de">here</a>';
}

#
#-----[ FIND ]------------------------------------------
#
'PRIVMSG_IMG' => $icon_pm,

#
#-----[ AFTER, ADD ]------------------------------------------
#
'ZMESSAGE' => $random[$randomizer],
'ZNUMBER' => $znumber,

#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/overall_header.tpl

#
#-----[ FIND ]------------------------------------------
#
</table></td>
</tr>
</table>

#
#-----[ AFTER, ADD ]------------------------------------------
#
<!-- Did you know? -->
<br />
<table border="0" align="center" cellpadding="4" cellspacing="0" class="forumline">
<tbody>
<tr>
<th class="thHead"> Did you kow? </th>
</tr>
<tr>
<td class="row{ZNUMBER}"><span class="gen"> {ZMESSAGE} </span></td>
</tr>
</tbody>
</table>
<br clear="all">
<!-- Did you know? -->

#
#-----[ COPY TO FOLDER ]------------------------------------------
#
schon_gewusst.txt to schon_gewusst.txt

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM[/php]

功能:在首頁新增一個表格顯示隨機的字串
再也不當爛好人...
好人是小白轉型成大白的墊腳石...
動機不明
喝咖啡的綠皮猴
喝咖啡的綠皮猴
文章: 1179
註冊時間: 2002-03-06 20:37
來自: GOP (重啟)

文章 動機不明 »

常見到的應用有

醒世格言
歷史上的今天\r
小技巧\r
....

等等 :-P
非官方外掛問題區公告: [必看]請配合發問格式及明確主題發問(2006 02/24更新)
七點要求:
1. 發問前先搜尋,確定沒有重複後再發表
2. 主題要明確
3. 依照發問格式
4. 禁連續推文
5. 請盡量減少使用地方性語言
6. 解決問題後請修改第一篇主題,並感謝曾經幫過你的前輩們 ^^
7. 請不要將檔案內容完整貼出喔! 只要提供問題行及上下各五行就可以了
主題已鎖定

回到「非官方認證外掛」