-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.php
132 lines (101 loc) · 3.34 KB
/
gallery.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
<?php require_once("includes/initialize.php"); ?>
<?php
// $page = !empty($_GET['page']) ? (int)$_GET['page'] : 1;
// $per_page = 5;
// $total_count = Image::count();
// $pagination = new Pagination($page, $per_page, $total_count);
// $sql = "SELECT * FROM images ";
// $sql .= "ORDER BY id ASC ";
// $sql .= "LIMIT " . $per_page;
// $sql .= " OFFSET " . $pagination->offset();
// $images = Image::find_by_sql($sql);
// if(isset($_GET['page']) && ($_GET['page'] > $pagination->total_pages())) {
// redirect_to("gallery.php");
// }
?>
<?php require_once("includes/header.php"); ?>
<div class="cAlign">
<div id="fullWidthSection" align="center">
<h4><?php echo output_message($message); ?></h4>
<div align="center">
<h2>Gallery</h2>
<h1><b><u>UNDER CONSTRUCTION</u></b></h1>
<?php header('Refresh: 5; URL=index.php'); ?>
<?php
// echo "<table>";
// foreach($images as $image) {
// echo "<td>";
// echo "<a href='images/{$image->filename}' rel='lightbox[galerija]'><img class='borderImg' src='images/{$image->filename}' width='150'></a>";
// echo "</td>";
// }
// echo "</table>";
?>
<?php
// $column = 4;
// $base = "images";
// $x = 0;
// $handle = opendir($base);
// while(($file = readdir($handle)) !== FALSE) {
// if($file != "." && $file != "..") {
// echo "<table id='galerija' style='display:inline-table;'><tr><td><a href='$base/$file' rel='lightbox[galerija]' title='$file'><img class='borderImg' src='$base/$file' width='150px' height='100px'></a></td></tr></table>";
// $x++;
// if($x == $column) {
// echo "</br>";
// $x = 0;
// }
// }
// }
// closedir($handle);
?>
<br>
<ul id="pagination">
<?php
// if($pagination->total_pages() > 1) {
// if($pagination->has_previous_page()) {
// echo "<li><a href=\"gallery.php?page=";
// echo $pagination->previous_page();
// echo "\">« Previous</a></li>";
// }
// for($i = 1; $i <= $pagination->total_pages(); $i++) {
// if($i == $page) {
// echo "<li><a id=\"currentPage\">{$i}</a></li>";
// } else {
// echo " <li><a href=\"gallery.php?page={$i}\">{$i}</a></li> ";
// }
// }
// if($pagination->has_next_page()) {
// echo "<li><a href=\"gallery.php?page=";
// echo $pagination->next_page();
// echo "\">Next »</a></li>";
// }
// }
?>
</ul>
</div>
<?php
// error_reporting(0);
// $column = 4;
// $base = "images";
// $thumbs = "thumbs";
// $get_album = $_GET['album'];
// $x = 0;
// echo "<b>$get_album</b></p>";
// $handle = opendir($base."/".$get_album);
// while(($file = readdir($handle)) !== FALSE) {
// if($file != "." && $file != ".." && strstr($file, "thumb_")) {
// $ime = trim($file, 'thumb_');
// echo "<table id='galerija' style='display:inline-table;'><tr><td><a href='$base/$ime' rel='lightbox[galerija]' title='$ime'><img class='borderImg' src='$base/$file' width='150px' height='100px'></a></td></tr></table>";
// $x++;
// if($x == $column) {
// echo "</br>";
// $x = 0;
// }
// }
// }
// closedir($handle);
// echo "<h4><a href='javascript:history.back();'>Back</a></h4>";
?>
</div>
<div class="cBoth"></div>
</div>
<?php require_once("includes/footer.php"); ?>