-
Notifications
You must be signed in to change notification settings - Fork 0
/
returic_korisnici.php
61 lines (41 loc) · 1.41 KB
/
returic_korisnici.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
<?php
include_once("recaptchalib.php");
include_once('Framework/glavniPHP.php');
include_once('Framework/klasaKorisnik.php');
$korisnik = new korisnik();
$smarty->assign("naslov","Korisnici");
if (!isset($_SESSION['korisnik']))
{
$smarty->assign("ZabranjenPristup", "Morate biti prijavljeni za pristup traženoj stranici");
$smarty->display("returic_prijava.tpl");
} else {
$stranica = 0;
$kolicinaStranica = 10;
if (isset($_GET['stranica']))
{
$_GET['stranica'] = $_GET['stranica'] - 1;
}
$ukupno = sizeof(korisnik::preuzmiSve());
$offset = $_GET['stranica'] * $kolicinaStranica;
$stranice = ceil($ukupno / $kolicinaStranica) + 1;
$korisnici = korisnik::preuzmiSve("", " LIMIT 10 OFFSET $offset");
foreach($korisnici as $korisnik)
{
$korisnik->email = recaptcha_mailhide_html ($mailhide_pubkey,$mailhide_privkey, $korisnik->email);
}
if ($stranice > 5)
{
$pocetakStranice = max($_GET['stranica'] - 2, 1);
$krajStranice = min($stranice, $_GET['stranica'] + 5);
} else {
$pocetakStranice = 1;
$krajStranice = $stranice;
}
$smarty->assign("korisnici", $korisnici);
$smarty->assign("pocetakStranice", $pocetakStranice);
$smarty->assign("krajStranice", $krajStranice);
$smarty->assign("stranice", $stranice);
$smarty->assign("stranica", $_GET['stranica'] + 1);
$smarty->display("returic_korisnici.tpl");
}
?>