-
Notifications
You must be signed in to change notification settings - Fork 3
/
filmprofile.php
66 lines (56 loc) · 1.84 KB
/
filmprofile.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
<?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 = 'filmprofile';
require_once('config.inc.php');
require_once('include/DVD.class.php');
// Check values
if ( isset($_GET['id']) ) {
$smarty = new pmp_Smarty;
$smarty->loadFilter('output', 'trimwhitespace');
$smarty->assign('pmp_theme', $pmp_theme);
$smarty->assign('pmp_review_type', $pmp_review_type);
dbconnect();
// Page selected?
if ( !empty($_GET['page']) ) {
if ( !is_numeric($_GET['page']) ) {
$_GET['page'] = 1;
}
}
else {
$_GET['page'] = 1;
}
// Get screenshots on page 1
if ($_GET['page'] == 1) {
$filenames = getScreenshots ($_GET['id']);
if ( isset($filenames) ) {
sort($filenames);
$smarty->assign('screenshots', $filenames);
}
}
// Increase counter for profile
$smarty->assign('counter', inccounter($_GET['id']));
// Get dvd data
$smarty->assign('dvd', new DVD($_GET['id']));
dbclose();
$smarty->display('filmprofile.tpl');
}
?>