## forum check mod
#----------------->Einstellungen<---------------#
$tagepop = 3; // nach wievielen Tagen ohne Post soll das Popup erscheinen?
$rechtpop = -1; // ab welchem Recht? Mögliche Werte: 0 (Gast) bis -9 (Admin)
$txtpop = 'Hey schau doch mal wieder ins Forum rein'; // Popup Nachricht
#-----------------------------------------------#
$ergpop = db_query("SELECT `time` FROM prefix_posts WHERE erstid = '".$_SESSION['authid']."' ORDER BY `time` DESC LIMIT 0,1");
$lastpost = @db_result($erg,0);
$difpop = time() - $lastpost;
$sekpop = $tage * 24 * 3600;
if ( $difpop > $sekpop AND $rechtpop >= $_SESSION['authright'] ) {
$x = '<div id="LastPostdivID" style="position:absolute; top:200px; left:550px; display:inline; width:200px;">
<table width="100%" class="border" border="0" cellspacing="1" cellpadding="4">
<tr>
<td class="Cdark" align="left">
<a href="javascript:closeLastPostdivID()"><img style="float:right; border: 0" src="include/images/icons/del.gif" alt="schliessen" title="schliessen"></a>
'.$txtpop.'
</td>
</tr>
</table>
</div>';
}else{
$x = 'leer ^^';
}
$popup = $x;
##ende dingsda
das in die boxes/login.php
$tpl->set ( 'POPUP' , $popup);
unten das noch rein ^^
in die templates/user/boxes_login.htm
<script language="JavaScript" type="text/javascript"><!--
function closeLastPostdivID () { document.getElementById("LastPostdivID").style.display = "none"; }
//--></script>
das an den anfang und läuft
fehlerfrei
Zuletzt modifiziert von Akira am 03.08.2009 - 03:09:49