-
Notifications
You must be signed in to change notification settings - Fork 159
/
statistics-date.php
97 lines (91 loc) · 3.41 KB
/
statistics-date.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
require_once('require/class.Connection.php');
require_once('require/class.Stats.php');
require_once('require/class.Language.php');
$Stats = new Stats();
$title = _("Statistics").' - '._("Busiest Day");
$type = 'aircraft';
if (isset($_GET['marine'])) {
$type = 'marine';
require_once('require/class.Marine.php');
$Marine = new Marine();
} elseif (isset($_GET['tracker'])) {
$type = 'tracker';
require_once('require/class.Tracker.php');
$Tracker = new Tracker();
}
if (!isset($filter_name)) $filter_name = '';
$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING);
if ($airline_icao == '' && isset($globalFilter)) {
if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0];
}
require_once('header.php');
include('statistics-sub-menu.php');
print '<link href="'.$globalURL.'/css/c3.min.css" rel="stylesheet" type="text/css">';
print '<script type="text/javascript" src="'.$globalURL.'/js/d3.min.js"></script>';
print '<script type="text/javascript" src="'.$globalURL.'/js/c3.min.js"></script>';
print '<div class="info">
<h1>'._("Busiest Day").'</h1>
</div>
<p>'._("Below is a chart that plots the busiest day during the <strong>last 7 days</strong>.").'</p>';
if ($type == 'aircraft') $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name);
elseif ($type == 'marine') $date_array = $Marine->countAllDatesLast7Days();
elseif ($type == 'tracker') $date_array = $Tracker->countAllDatesLast7Days();
if (count($date_array) == 0) {
print _("No data available");
} else {
print '<div id="chart" class="chart" width="100%"></div><script>';
$date_data = '';
$date_cnt = '';
foreach($date_array as $date_item)
{
$date_data .= '"'.$date_item['date_name'].'",';
$date_cnt .= $date_item['date_count'].',';
}
$date_data = "['x',".substr($date_data, 0, -1)."]";
$date_cnt = "['flights',".substr($date_cnt,0,-1)."]";
print 'c3.generate({
bindto: "#chart",
data: { x: "x",
columns: ['.$date_data.','.$date_cnt.'], types: { flights: "area"}, colors: { flights: "#1a3151"}},
axis: { x: { type: "timeseries",tick: { format: "%Y-%m-%d"}}, y: { label: "# of Flights"}},legend: { show: false }});';
print '</script>';
}
if (isset($globalDBArchiveMonths) && $globalDBArchiveMonths > 0) {
print '<p>'.sprintf(_("Below are the <strong>Top 10</strong> most busiest dates of last %d month(s)."),$globalDBArchiveMonths).'</p>';
} else {
print '<p>'._("Below are the <strong>Top 10</strong> most busiest dates.").'</p>';
}
if ($type == 'aircraft') $date_array = $Stats->countAllDates($airline_icao,$filter_name);
elseif ($type == 'marine') $date_array = $Marine->countAllDates();
elseif ($type == 'tracker') $date_array = $Tracker->countAllDates();
if (!empty($date_array))
{
print '<div class="table-responsive">';
print '<table class="common-date table-striped">';
print '<thead>';
print '<th></th>';
print '<th>'._("Date").'</th>';
print '<th>'._("# of Flights").'</th>';
print '</thead>';
print '<tbody>';
$i = 1;
foreach($date_array as $date_item)
{
print '<tr>';
print '<td><strong>'.$i.'</strong></td>';
print '<td>';
print '<a href="'.$globalURL.'/date/'.date("Y-m-d", strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>';
print '</td>';
print '<td>';
print $date_item['date_count'];
print '</td>';
print '</tr>';
$i++;
}
print '<tbody>';
print '</table>';
print '</div>';
}
require_once('footer.php');
?>