-
Notifications
You must be signed in to change notification settings - Fork 14
/
footer.php
executable file
·43 lines (43 loc) · 1.94 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!--
// =========================================================================
// ______
// / __/ /____ ________ ____ ___ _ ___ ___
// _\ \/ __/ _ `/ __/ _ `/ _ `/ ' \/ -_|_-<
// /___/\__/\_,_/_/ \_, /\_,_/_/_/_/\__/___/
// _____ /___/ __ ___ __
// / ___/__ ___ / /________ / / / _ \___ ____ ___ / /
// / /__/ _ \/ _ \/ __/ __/ _ \/ / / ___/ _ `/ _ \/ -_) /
// \___/\___/_//_/\__/_/ \___/_/ /_/ \_,_/_//_/\__/_/
// =========================================================================
// Copyright (c) Stargames Control Panel - Licensed under GNU GPL.
// See LICENSE File
// =========================================================================
// Project Lead by: Mysterious
// =========================================================================
-->
<?php
if(!$SERVER['system_safe']) exit();
if(!$sql->total_query) $sql->total_query = 0;
$CP['end_time'] = getmicrotime();
$execution_time = ($CP[end_time] - $CP[start_time]);
$execution_time = floor(($execution_time) * 1000 + .5) * .001;
$process_gzip = $CONFIG_gzip? Enable : Disable;
mysql_close($sql->link);
echo "<TR>
<TD colspan=\"2\" align=\"center\">
<div class=\"footerface\">
[ <img src=\"theme/".$STORED[THEME]."/images/stat_time.gif\"> Script Execution time: $execution_time ]
[ <img src=\"theme/".$STORED[THEME]."/images/stat_sql.gif\"> $sql->total_query queries used ]
[ <img src=\"theme/".$STORED[THEME]."/images/stat_gzip.gif\"> GZIP $process_gzip ]
[ Theme: <a class=\"theme_name\" title=\"$THEME[comment]\">$THEME[name]</a> by <a href=\"mailto:$THEME[author_email]\" title=\"$THEME[author_email]\">$THEME[author]</a> ]
<BR>$CP[name] © $CP[corp]. All Rights Reserved. $CP[credit]
</div>
</TD>
</TR>
</TD>
</TR>
</TABLE>
</body>
</html>";
include_once "gzip_footer.php";
?>