-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwizyty.php
167 lines (136 loc) · 5.37 KB
/
wizyty.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
//--- dolaczenie plikow
if(file_exists('config.php')) {
include('config.php');
include('inc/baza_polacz.php');
}
include('funkcje/funkcje.php');
include('funkcje/funkcje_odczytu.php');
include("inc/sesje.php");
?>
<!doctype html>
<html lang="pl">
<head>
<?php
//--- dolaczenie plikow
include('inc/head.php');
?>
</head>
<body>
<?php
//--- dolaczenie plikow
if(file_exists('config.php')) {
include('inc/menu.php');
include('inc/baner.php');
include('inc/pole_alerts.php');
}
?>
<?php
if(file_exists('config.php')) {
//zainstalowany
?>
<div class="container tresc">
<?php
if(isset($_SESSION['sesja_uzyt']['zalogowany'])){
?>
<div class="page-header">
<h1>Wizyty <span><?php echo 'Rok: '.$_GET['rok']; ?></span></h1>
</div>
<div class="row">
<div class="col-sm">
<div class="btn-group" role="group" aria-label="...">
<!-- lata -->
<div class="btn-group" role="group">
<button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<?php echo 'Rok <b>'.$_GET['rok'].'</b>'; ?>
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<?php
$stmt = $db->query("SELECT * FROM `lata_kal` ORDER BY `lata_kal`.`lata` ASC");
while($wiersz = $stmt->fetch(PDO::FETCH_ASSOC)){
$rok = $wiersz['lata'];
echo'<a href="wizyty.php?rok='.$rok.'" class="dropdown-item'; if($rok == $_GET['rok']){echo' active';} echo'">'.$rok.'</a>';
}
?>
</ul>
</div>
<!-- miesiace -->
<div class="btn-group" role="group">
<button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<?php echo 'Miesiąc <b>'.$_GET['m'].'</b>'; ?>
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<?php
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=1" class="dropdown-item'; if($_GET['m'] == 1){echo' active';} echo'">Styczeń</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=2" class="dropdown-item'; if($_GET['m'] == 2){echo' active';} echo'">Luty</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=3" class="dropdown-item'; if($_GET['m'] == 3){echo' active';} echo'">Marzec</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=4" class="dropdown-item'; if($_GET['m'] == 4){echo' active';} echo'">Kwiecień</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=5" class="dropdown-item'; if($_GET['m'] == 5){echo' active';} echo'">Maj</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=6" class="dropdown-item'; if($_GET['m'] == 6){echo' active';} echo'">Czerwiec</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=7" class="dropdown-item'; if($_GET['m'] == 7){echo' active';} echo'">Lipiec</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=8" class="dropdown-item'; if($_GET['m'] == 8){echo' active';} echo'">Sierpień</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=9" class="dropdown-item'; if($_GET['m'] == 9){echo' active';} echo'">Wrzesień</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=10" class="dropdown-item'; if($_GET['m'] == 10){echo' active';} echo'">Październik</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=11" class="dropdown-item'; if($_GET['m'] == 11){echo' active';} echo'">Listopad</a>';
echo'<a href="wizyty.php?rok='.$_GET['rok'].'&m=12" class="dropdown-item'; if($_GET['m'] == 12){echo' active';} echo'">Grudzień</a>';
?>
</ul>
</div>
</div>
</div>
<div class="col-sm" style="margin-top: 5px; margin-bottom: 5px;">
<form action="" class="form-inline" method="post">
<div class="form-group row">
<label for="inputWykres" class="col-sm-2 col-form-label text-muted">wykres</label>
<div class="col-sm">
<select name="rodz_wykresu" id="inputWykres" class="form-control form-control-sm">
<option value="bar" <?php if($_SESSION['sesja_uzyt']['wykres'] == 'bar'){echo 'selected';} ?>>Bar</option>
<option value="line" <?php if($_SESSION['sesja_uzyt']['wykres'] == 'line'){echo 'selected';} ?>>Line</option>
<option value="radar" <?php if($_SESSION['sesja_uzyt']['wykres'] == 'radar'){echo 'selected';} ?>>Radar</option>
<option value="polarArea" <?php if($_SESSION['sesja_uzyt']['wykres'] == 'polarArea'){echo 'selected';} ?>>Polar Area</option>
</select>
</div>
</div>
<div class="form-group row">
<div class="col-sm">
<button type="submit" name="wyslij_wykres" class="btn btn-primary btn-sm">zmień wykres</button>
</div>
</div>
</form>
</div>
</div><!-- /row -->
<?php
if(!isset($_GET['m']) AND !isset($_GET['t'])){
//---------------------------------------Pokazuje wykres ROKU (miesiące)
include('inc/odczyt-stat/wizyty-rok.php');
}else{
//---------------------------------------Pokazuje wykres MIESIECZNY (dni)
include('inc/odczyt-stat/wizyty-miesiac.php');
}
?>
</div><!-- /tresc -->
<?php
}else{
include('inc/form_logowania.php');
}
?>
</div>
<?php
if(isset($_SESSION['sesja_uzyt']['zalogowany'])){
include('inc/zalogowany_jako.php');
}
}else{
//instalacja
include('instalacja/index.php');
}
?>
<?php
if(file_exists('config.php')) {
include('inc/stopka.php');
}
include('inc/stopka_bootstrap.php');
?>
</body>
</html>