Код: Выделить всё
##############################################################
## MOD Title: Centered Popup on PM
## MOD Authors: Mr. Anderson < anderson@phpbbguru.net > http://www.phpbbguru.net
## MOD Description: This mod places PM Popup at the center of the screen
## instead of left-top corner.
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 2 Minutes
## Files To Edit (1): templates/subSilver/overall_header.tpl
##
## Included Files: (n/a)
##############################################################
## For Security Purposes, Please Check: http://www.phpbbguru.net/mods/ for the
## latest version of this MOD.
##############################################################
## Author Notes:
##
## Original idea belongs to Platinum < platinum@gamesniffer.com > http://www.gamesniffer.com
##
## Special thanks to Xpert < xpert@phpbbguru.net > http://www.phpbbguru.net
## for help on JS.
##
##############################################################
## MOD History:
##
## 2004-05-23 - Version 1.0.0
## - Initial Release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/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 -->
#
#-----[ REPLACE WITH ]------------------------------------------
#
<!-- BEGIN switch_enable_pm_popup -->
<script language="Javascript" type="text/javascript">
<!--
ptop = (window.screen.width / 2) - 200;
pleft = (window.screen.height / 2) - 112;
if ( {PRIVATE_MESSAGE_NEW_FLAG} )
{
window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'top='+ ptop + ',left=' + pleft + ',HEIGHT=225,resizable=yes,WIDTH=400');
}
//-->
</script>
<!-- END switch_enable_pm_popup -->
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM