-
Notifications
You must be signed in to change notification settings - Fork 2
/
stats.php
44 lines (34 loc) · 997 Bytes
/
stats.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
44
<?php
include("config_defaults.php");
include("config.php");
include("inc/header.php");
include("inc/parse_stats.php");
include("inc/logbook.php");
$page = basename(__FILE__, '.php');
$Logbook = new Logbook($DbSpawner->newdb(), $log_id);
?>
<!DOCTYPE html>
<html>
<head>
<?php
echo '<title>' . strtoupper($Cqrlog_common->logid_to_call($log_id)) . ' \'s DXCC statistics</title>';
include("inc/metaheader.php");
?>
</head>
<body>
<?php
$statsactive = true;
include("inc/navbar.php");
echo '<h1 align="center">DXCC statistics of ' . strtoupper($Cqrlog_common->logid_to_call($log_id)) . '</h1><div class="hidden-xs hidden-sm"><br /><br /></div>';
include("inc/stats_input.php");
if ($inlog) {
echo '<div align="right"> <a href="javascript:window.close();">Close window</a></div>';
}
?>
<br /><br />
<?php
include("inc/stats_proc.php");
include("inc/dxccstats.php");
include("inc/metafooter.php"); ?>
</body>
</html>