-
Notifications
You must be signed in to change notification settings - Fork 3
/
coverlist.php
72 lines (60 loc) · 2.35 KB
/
coverlist.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
<?php
/* phpMyProfiler
* Copyright (C) 2004 by Tim Reckmann [www.reckmann.org] & Powerplant [www.powerplant.de]
* Copyright (C) 2005-2014 The phpMyProfiler project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
// No direct access
defined('_PMP_REL_PATH') or die('Not allowed! Possible hacking attempt detected!');
$pmp_module = 'coverlist';
$smarty = new pmp_Smarty;
$smarty->loadFilter('output', 'trimwhitespace');
dbconnect();
// Page selected?
if ( isset($_GET['page']) ) {
if ( !is_numeric($_GET['page']) ) {
$start = 1;
}
else {
$start = $_GET['page'];
}
}
else {
$start = 1;
}
// Get cover ids for one page
$query = 'SELECT DISTINCT id FROM pmp_film WHERE collectiontype != \'Ordered\' AND collectiontype != \'Wish List\'
AND id NOT IN (SELECT id FROM pmp_tags where name = \'' . mysql_real_escape_string($pmp_exclude_tag) . '\') ORDER BY sorttitle LIMIT '
. (((int)$start - 1) * $pmp_cover_page) . ", " . $pmp_cover_page;
$result = dbexec($query);
$cover = array();
// Get dvd objects with dvd covers
if ( mysql_num_rows($result) > 0 ) {
while ( $row = mysql_fetch_object($result) ) {
$cover[] = new smallDVD($row->id);
}
}
// Get total number of covers
$query = 'SELECT COUNT(id) AS num FROM pmp_film WHERE collectiontype != \'Ordered\' AND collectiontype != \'Wish List\' AND id NOT IN (SELECT id FROM pmp_tags where name = \'' . mysql_real_escape_string($pmp_exclude_tag) . '\')';
$row = dbexec($query);
$count = mysql_result($row, 0, 'num');
dbclose();
$smarty->assign('cover', $cover);
$smarty->assign('count', $count);
$smarty->assign('page', (int)$start);
$smarty->assign('pages', (int)($count / $pmp_cover_page + ((($count % $pmp_cover_page)==0)? 0 : 1)));
$smarty->display('coverlist.tpl');
?>