-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.php
More file actions
92 lines (76 loc) · 1.79 KB
/
games.php
File metadata and controls
92 lines (76 loc) · 1.79 KB
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
<?php
/**
* games
*
* @package Sngine
* @author Zamblek
*/
// fetch bootloader
require('bootloader.php');
// games enabled
if (!$system['games_enabled']) {
_error(404);
}
try {
// get view content
switch ($_GET['view']) {
case '':
// user access
if ($user->_logged_in || !$system['system_public']) {
user_access();
}
// page header
page_header(__("Discover Games"));
// get games
$games = $user->get_games();
/* assign variables */
$smarty->assign('games', $games);
$smarty->assign('get', "games");
break;
case 'played':
// user access
user_access();
// page header
page_header(__("Your Games"));
// get games
$games = $user->get_games(0, true);
/* assign variables */
$smarty->assign('games', $games);
$smarty->assign('get', "played_games");
break;
case 'game':
// user access
if ($user->_logged_in || !$system['system_public']) {
user_access();
}
// games permission
if ($user->_logged_in) {
if (!$user->_data['can_play_games']) {
_error('PERMISSION');
}
} else {
if ($system['games_permission'] != "everyone") {
_error('PERMISSION');
}
}
// get game
$game = $user->get_game($_GET['game_id']);
if (!$game) {
_error(404);
}
/* assign variables */
$smarty->assign('game', $game);
// page header
page_header($game['title'], $game['description'], $game['thumbnail']);
break;
default:
_error(404);
break;
}
/* assign variables */
$smarty->assign('view', $_GET['view']);
} catch (Exception $e) {
_error(__("Error"), $e->getMessage());
}
// page footer
page_footer("games");