Aşağıdaki icon ' u temanın içine atın ..
[ resmi görüntülemek için tıklayın ]
Kod: Tümünü seç
########################################################
## Mod Title: Online Virus Scanner for phpBB
## Mod Author: FuNEnD3R < admin@funender.com > www.funender.com
## Free Online Scanner provided by www.trendmicro.com Copyright 1989-2004 Trend Micro, Inc. All rights reserved
##
## Mod Description: This will simply add the Trend Mirco Free Online Scanner to your forums
##
## Mod Version: 1.00 released on June 4, 2004
## Please visit the www.funender.com forums to view the demonstration
##
##
## Installation Level: simple
## Installation Time: 5 Minutes
## Files To Edit:
## page_header.php
## lang_main.php
## overall_header.tpl
##
## Included files: icon_mini_virus.gif
##
##############################################################
## 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: Please let me know if you experience any problems
##
##############################################################
## MOD History:
##
## 2004-06-04 - Version 1.00
## - First release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##
##############################################################
#
#-----[ COPY ]------------------------------------------
#
icon_mini_virus.gif to templates/your_theme_name/images/
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
'L_USERGROUPS' => $lang['Usergroups'],
#
#-----[ AFTER, ADD ]------------------------------------
#
'L_ONLINE_SCAN' => $lang['Online_Scan'],
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//
// That's all, Folks!
#
#-----[ BEFORE, ADD ]-----------------------------------
#
// Trend Mirco Online Virus Scanner
$lang['Online_Scan'] = 'Online Virus Scan';
#
#-----[ OPEN ]------------------------------------------
#
templates/your_theme_name/overall_header.tpl
#
#-----[ FIND ]------------------------------------------
#
<!-- BEGIN switch_enable_pm_popup -->
<script language="Javascript" type="text/javascript">
<!--
if ( {PRIVATE_MESSAGE_NEW_FLAG} )
{
window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
}
//-->
</script>
<!-- END switch_enable_pm_popup -->
#
#-----[ AFTER, ADD ]------------------------------------
#
<!-- start of Trend Micro HouseCall code -->
<script language="JavaScript">
<!--
var lkTXT=''
var subTXT=''
var useImage=false
var imgURL=''
var imgWD=''
var imgHT=''
var hcURL='http://housecall.trendmicro.com/housecall/start_frame.asp'
var options = 'scrollbars=yes,resizable=yes,width=500,height=420'
var popup
var p
function newWindow2(url) {
url = url + '?ref=' + escape(document.location)
if (!popup || popup.closed) {
popup = window.open(url,"popup",options)
} else {
popup.location = url
popup.focus()
}
}
function writeHTML() {
p='<font face="Verdana, Helvetica, sans-serif" size="-1">'
p+='<a href="javascript:newWindow2(\''+hcURL+'\')" onMouseOver="window.status=\''+lkTXT+'\';return true" onMouseOut="window.status=\' \';return true">'
if (useImage) {
p+='<img src="'+imgURL+'" width="'+imgWD+'" height="'+imgHT+'" border="0"></a>'
} else {
p+='<b>'+lkTXT+'</b></a><br><font size="-2">'+subTXT+'</font></font>'
}
document.write(p)
}
writeHTML()
// -->
</script>
<noscript><a href="http://housecall.trendmicro.com/"
target="_top">FREE Online Virus Scanner</a></noscript>
<!-- v1.0, released October 12, 2001 -->
<!-- Copyright 2001 Trend Micro, Inc. -->
<!-- phpBB conversion Copyright 2004 Funender.com -->
<!-- end of Trend Micro HouseCall code -->
#
#-----[ FIND ]------------------------------------------
#
<a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a>
#
#-----[ AFTER, ADD ]------------------------------------
#
<a href="javascript:newWindow2('http://housecall.trendmicro.com/housecall/start_frame.asp')" class="mainmenu"><img src="templates/subSilver/images/icon_mini_virus.gif" width="12" height="13" border="0" alt="Free online virus scan" hspace="3" />{L_ONLINE_SCAN}</a>
#
#-----[ SAVE AND UPLOAD FILES ]-------------------------
#
# EoM