forked from Ysurac/FlightAirMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
accident-detailed.php
81 lines (75 loc) · 3.43 KB
/
accident-detailed.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
<?php
require_once('require/class.Connection.php');
require_once('require/class.Accident.php');
require_once('require/class.Language.php');
$Accident = new Accident();
$title = _("Latest accidents");
require_once('header.php');
$page_url = $globalURL.'/accident-detailed';
if (!isset($_GET['date']))
{
$date = date('Y-m-d');
} else {
$date = filter_input(INPUT_GET,'date',FILTER_SANITIZE_STRING);
}
if(!isset($_GET['limit']))
{
$limit_start = 0;
$limit_end = 25;
$absolute_difference = 25;
} else {
$limit_explode = explode(",", $_GET['limit']);
$limit_start = $limit_explode[0];
$limit_end = $limit_explode[1];
if (!ctype_digit(strval($limit_start)) || !ctype_digit(strval($limit_end))) {
$limit_start = 0;
$limit_end = 25;
}
}
$absolute_difference = abs($limit_start - $limit_end);
$limit_next = $limit_end + $absolute_difference;
$limit_previous_1 = $limit_start - $absolute_difference;
$limit_previous_2 = $limit_end - $absolute_difference;
print '<div class="select-item">';
print '<form action="'.$globalURL.'/accident" method="post" class="form-inline">';
print '<div class="form-group">';
print '<label for="datepickeri">'._("Select a Date").'</label>';
print '<div class="input-group date" id="datepicker">';
print '<input type="text" class="form-control" id="datepickeri" name="date" value="" />';
print '<span class="input-group-addon"><span class="glyphicon glyphicon-calendar"></span></span>';
print '</div>';
print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
print '</div>';
print '</form>';
print '</div>';
print '<script type="text/javascript">$(function () { $("#datepicker").datetimepicker({ keepInvalid: true, useStrict: false, format: "YYYY-MM-DD", extraFormats: ["YYYY-MM"], defaultDate: "'.$date.'"}); }); </script>';
print '<br />';
print '<div class="info column">';
if (preg_match('/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/',$date)) {
print '<h1>'.sprintf(_("Accidents from %s"),date("l F j, Y",strtotime($date))).'</h1>';
} elseif (preg_match('/^[0-9]{4}-[0-9]{2}$/',$date)) {
print '<h1>'.sprintf(_("Accidents from %s"),date("F, Y",strtotime($date))).'</h1>';
} elseif (preg_match('/^[0-9]{4}$/',$date)) {
print '<h1>'.sprintf(_("Accidents from %s"),$date).'</h1>';
}
print '</div>';
print '<div class="table column">';
if (preg_match('/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/',$date)) {
print '<p>'.sprintf(_("The table below shows the Accidents on <strong>%s</strong>."),date("l M j, Y",strtotime($date))).'</p>';
} elseif (preg_match('/^[0-9]{4}-[0-9]{2}$/',$date)) {
print '<p>'.sprintf(_("The table below shows the Accidents on <strong>%s</strong>."),date("M, Y",strtotime($date))).'</p>';
} elseif (preg_match('/^[0-9]{4}$/',$date)) {
print '<p>'.sprintf(_("The table below shows the Accidents on <strong>%s</strong>."),$date).'</p>';
}
$spotter_array = $Accident->getAccidentData($limit_start.",".$absolute_difference,'accident',$date);
//print_r($spotter_array);
if (!empty($spotter_array) && isset($spotter_array[0]['query_number_rows']) && $spotter_array[0]['query_number_rows'] != 0) {
include('table-output.php');
print '<div class="pagination">';
if ($limit_previous_1 >= 0) print '<a href="'.$page_url.'/'.$date.'/'.$limit_previous_1.','.$limit_previous_2.'">«'._("Previous Page").'</a>';
if ($spotter_array[0]['query_number_rows'] == $absolute_difference) print '<a href="'.$page_url.'/'.$date.'/'.$limit_end.','.$limit_next.'">'._("Next Page").'»</a>';
print '</div>';
}
print '</div>';
require_once('footer.php');
?>