83 lines
No EOL
3.5 KiB
PHP
83 lines
No EOL
3.5 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of XNova:Legacies
|
|
*
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.txt
|
|
* @see http://www.xnova-ng.org/
|
|
*
|
|
* Copyright (c) 2009-Present, XNova Support Team <http://www.xnova-ng.org>
|
|
* All rights reserved.
|
|
*
|
|
* 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* --> NOTICE <--
|
|
* This file is part of the core development branch, changing its contents will
|
|
* make you unable to use the automatic updates manager. Please refer to the
|
|
* documentation for further information about customizing XNova.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @deprecated
|
|
* @param unknown_type $Type
|
|
* @param unknown_type $Ref
|
|
* @param unknown_type $Value
|
|
* @param unknown_type $Init
|
|
*/
|
|
function InsertJavaScriptChronoApplet ( $Type, $Ref, $Value, $Init ) {
|
|
if ($Init == true) {
|
|
$JavaString = "<script type=\"text/javascript\">\n";
|
|
$JavaString .= "function t". $Type . $Ref ."() {\n";
|
|
$JavaString .= "v = new Date();\n";
|
|
$JavaString .= "var bxx". $Type . $Ref ." = document.getElementById('bxx". $Type . $Ref ."');\n";
|
|
$JavaString .= "n = new Date();\n";
|
|
$JavaString .= "ss". $Type . $Ref ." = pp". $Type . $Ref .";\n";
|
|
$JavaString .= "ss". $Type . $Ref ." = ss". $Type . $Ref ." - Math.round((n.getTime() - v.getTime()) / 1000.);\n";
|
|
$JavaString .= "m". $Type . $Ref ." = 0;\n";
|
|
$JavaString .= "h". $Type . $Ref ." = 0;\n";
|
|
$JavaString .= "if (ss". $Type . $Ref ." < 0) {\n";
|
|
$JavaString .= " bxx". $Type . $Ref .".innerHTML = \"-\";\n";
|
|
$JavaString .= "} else {\n";
|
|
$JavaString .= " if (ss". $Type . $Ref ." > 59) {\n";
|
|
$JavaString .= " m". $Type . $Ref ." = Math.floor(ss". $Type . $Ref ." / 60);\n";
|
|
$JavaString .= " ss". $Type . $Ref ." = ss". $Type . $Ref ." - m". $Type . $Ref ." * 60;\n";
|
|
$JavaString .= " }\n";
|
|
$JavaString .= " if (m". $Type . $Ref ." > 59) {\n";
|
|
$JavaString .= " h". $Type . $Ref ." = Math.floor(m". $Type . $Ref ." / 60);\n";
|
|
$JavaString .= " m". $Type . $Ref ." = m". $Type . $Ref ." - h". $Type . $Ref ." * 60;\n";
|
|
$JavaString .= " }\n";
|
|
$JavaString .= " if (ss". $Type . $Ref ." < 10) {\n";
|
|
$JavaString .= " ss". $Type . $Ref ." = \"0\" + ss". $Type . $Ref .";\n";
|
|
$JavaString .= " }\n";
|
|
$JavaString .= " if (m". $Type . $Ref ." < 10) {\n";
|
|
$JavaString .= " m". $Type . $Ref ." = \"0\" + m". $Type . $Ref .";\n";
|
|
$JavaString .= " }\n";
|
|
$JavaString .= " bxx". $Type . $Ref .".innerHTML = h". $Type . $Ref ." + \":\" + m". $Type . $Ref ." + \":\" + ss". $Type . $Ref .";\n";
|
|
$JavaString .= "}\n";
|
|
$JavaString .= "pp". $Type . $Ref ." = pp". $Type . $Ref ." - 1;\n";
|
|
$JavaString .= "window.setTimeout(\"t". $Type . $Ref ."();\", 999);\n";
|
|
$JavaString .= "}\n";
|
|
$JavaString .= "</script>\n";
|
|
} else {
|
|
$JavaString = "<script language=\"JavaScript\">\n";
|
|
$JavaString .= "pp". $Type . $Ref ." = ". $Value .";\n";
|
|
$JavaString .= "t". $Type . $Ref ."();\n";
|
|
$JavaString .= "</script>\n";
|
|
}
|
|
|
|
return $JavaString;
|
|
}
|
|
|
|
?>
|