-
Notifications
You must be signed in to change notification settings - Fork 1
/
zrodlo.php
230 lines (182 loc) · 7.06 KB
/
zrodlo.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?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");
//######## STRONNICOWANIE
function wskaznik($strona, $liczba_stron)
{
$wynik = "<span class='text-muted small'><center>strona $strona/$liczba_stron</center></span><nav aria-label='Page navigation example'><ul class='pagination justify-content-center'>";
if ($strona > 1) {
$wynik .= " <li class='page-item'><a class='page-link' href='zrodlo.php?strona=1'><i class='material-icons'>first_page</i></a></li> ";
} else {
$wynik .= " <li class='page-item disabled'><a class='page-link' href='' tabindex='-1' aria-disabled='true'><i class='material-icons'>first_page</i></a></li> ";
}
$poprzednia = $strona - 1;
if ($poprzednia > 0) {
$wynik .= " <li class='page-item'><a class='page-link' href='zrodlo.php?strona=$poprzednia'><i class='material-icons'>navigate_before</i></a></li> ";
} else {
$wynik .= " <li class='page-item disabled'><a class='page-link' href=''><i class='material-icons'>navigate_before</i></a></li> ";
}
$nastepna = $strona + 1;
if ($nastepna <= $liczba_stron) {
$wynik .= " <li class='page-item'><a class='page-link' href='zrodlo.php?strona=$nastepna'><i class='material-icons'>navigate_next</i></a></li> ";
} else {
$wynik .= " <li class='page-item disabled'><a class='page-link' href=''><i class='material-icons'>navigate_next</i></a></li> ";
}
if ($strona < $liczba_stron) {
$wynik .= " <li class='page-item'><a class='page-link' href='zrodlo.php?strona=$liczba_stron'><i class='material-icons'>last_page</i></a></li> ";
} else {
$wynik .= " <li class='page-item disabled'><a class='page-link'><i class='material-icons'>last_page</i></a></li> ";
}
$wynik .= "</ul></nav>";
return $wynik;
}
?>
<!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('operacje/!_spis.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>Żródło <span></span></h1>
</div>
<?php
//-------------------------------------------------------------------
//STRONNICOWANIE
$p = array(); //zainiciowanie tablicy $p
$stmt = $db->query("SELECT * FROM klikzestr");
while($wiersz = $stmt->fetch(PDO::FETCH_ASSOC)){$id_art = $wiersz['id']; $p[]=$id_art;}
$liczba_rekordow = count($p); //liczba wszystkich rekordow
$rekordow_na_stronie = 10; //liczba rekordow na stronie
$liczba_stron = (int) (($liczba_rekordow + $rekordow_na_stronie - 1) / $rekordow_na_stronie);
if (isset($_GET['strona']) && str_ievpifr($_GET['strona'], 1, $liczba_stron)) {
$strona = $_GET['strona'];
}else{
$strona = 1;
}
$start = ($strona - 1) * $rekordow_na_stronie;
echo'
<div class="table-responsive">
<table class="table table-striped table-hover small table-sm">
<tr>
<th>źródło</th> <th>odsłony</th> <th>wykres</th> <th>data</th> <th>usuń</th>
</tr>';
szukaj_naj_godziny('klikzestr');
$stmt = $db->query("SELECT * FROM `klikzestr` ORDER BY `klikzestr`.`wejscia` DESC LIMIT $start ,$rekordow_na_stronie");
while($wiersz = $stmt->fetch(PDO::FETCH_ASSOC)){
$id = $wiersz['id'];
$str = $wiersz['strona'];
$wejscia = $wiersz['wejscia'];
$data_utw = $wiersz['data']; $data_utw = date('d-m-Y, H:i:s', $data_utw);
if($wejscia != 0){
// obliczanie wysokosci slupka
$szer = ($wejscia / $naj_g) * 200; $szer = round($szer, 0);
}else{$szer = 1;}
echo'
<tr>
<td class="text-muted"><a href="http://'.$str.'" target="_blank" data-toggle="tooltip" data-placement="right" title="Otwórz stronę w Nowym Oknie">'.$str.'</a></td> <td class="text-muted">'.$wejscia.'</td> <td><div class="row_slupki_poziom ttt" style="width: '.$szer.'px;" title="'.$wejscia.' ods." data-toggle="tooltip" data-placement="right"></div></td> <td class="text-muted">'.$data_utw.'</td> <td><button type="button" class="btn btn-sm btn-danger" data-toggle="modal" data-target="#szczegoly'.$id.'" title="Usuń"><i class="material-icons">delete_forever</i></button></td>
</tr>';
//szczegoly
echo'
<!-- Modal -->
<div class="modal fade" id="szczegoly'.$id.'">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Na pewno usunąć tą pozycję ?</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<form action="zrodlo.php" method="post" class="form-horizontal">
<ul class="list-group">
<li class="list-group-item">
<div class="row">
<div class="col-md-3">nazwa</div>
<div class="col-md-9"><b>'.$str.'</b></div>
</div>
</li>
</ul>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<input type="hidden" value="'.$id.'" name="id">
<input type="hidden" value="'.$str.'" name="str">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Nie</button>
<button type="submit" class="btn btn-success" name="wyslij_8" title="tak usuń">Tak</button>
</form>
</div>
</div>
</div>
</div>
<!-- end Modal -->';
}
echo'
</table>
</div>';
?>
<?php
echo wskaznik($strona, $liczba_stron); //stronnicowanie
?>
<hr />
<p>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
<i class="material-icons">live_help</i> Pomoc
</button>
</p>
<div class="collapse" id="collapseExample">
<div class="card card-body">
Dane zawarte w powyższej tabeli wskazują z jakiej domeny trafił użytkownik na stronę monitorowaną lub dzięki której wyszukiwarce. Rubryka Data wskazuje na datę kiedy coś takiego miało miejsce. Dodano też możliwość usunięcia pojedynczych rekordów.
</div>
</div>
</div>
<?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>