| Code: |
<?php
/************************************************************************/
/* PHP-NUKE: General Block */
/* =========================== */
/* */
/* Copyright (c) 2003 by Dick Snel */
/* http://dlclan.distanthost.com */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/* */
/* This block contains: Add to Favourites link, Make Startpage Link, */
/* Contact The Webmaster and the time. Just a simple block :) */
/************************************************************************/
if (eregi("block-General.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}
$content = "
<script Language=\"JavaScript1.2\">
<!--
var bookmarkurl = \"http://bloodrave.com\";
var bookmarktitle = \"Bloodrave\";
function addbookmark()
{
if (document.all)
window.external.AddFavorite(bookmarkurl, bookmarktitle);
}
// -->
</script>
<script language=\"JavaScript\">
function tS(){ x=new Date(); x.setTime(x.getTime()); return x; }
function lZ(x){ return (x>9)?x:'0'+x; }
function dT(){ window.status='Welcome to Bloodrave!'; if(fr==0){ fr=1; document.write('<font size=2 face=Arial><b><span id=\"tP\">'+eval(oT)+'</span></b></font>'); } tP.innerText=eval(oT); setTimeout('dT()',1000); }
var fr=0,oT=\"lZ(tS().getHours())+':'+lZ(tS().getMinutes())+':'+lZ(tS().getSeconds())+' '\";
</script>
<!--[if IE]>
<img src=\"/images/home.gif\"> <a href=\"#\" onClick=\"this.style.behavior='url(#default#homepage)'; this.setHomePage('http://bloodrave.com');\">Set As Start Page</A></font><br><![endif]-->
<img src=\"/images/favo.gif\"> <a href=\"javascript:addbookmark()\">Add To Favorites</a>
<br><img src=\"/images/mail.gif\"> <a href=\"mailto:dr3g@bloodrave.com\">Contact Webmaster</a>
<br><img src=\"/images/time.gif\"> <script language=\"JavaScript\">dT();</script>
";
?> |