-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPanelLeftAdmin.php
176 lines (164 loc) · 8.91 KB
/
PanelLeftAdmin.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<?php
/*
GamePanelX
Description: Left admin panel with links to main pages
Author: Ryan D. Gehrig
License: GNU General Public License (GPL)
*/
include_once('include/config.php');
include_once('include/auth.php');
include_once('include/SqlCon.php');
// Kill page if user is not an admin
$query = "SELECT is_admin FROM users WHERE username='$GPXuserName'";
sqlCon($query);
if($row['is_admin'] != 'Y')
{
include('Unauthorized.php');
exit(0);
}
?>
<html>
<head>
<title><?php echo $config['title']; ?></title>
<META NAME="ROBOTS" CONTENT="NONE">
<META NAME="GOOGLEBOT" CONTENT="NONE">
<META NAME="Slurp" CONTENT="NONE">
<link rel="stylesheet" type="text/css" href="css/<?php echo $config['theme']; ?>/panelLeft.css">
</head>
<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<table align="center" cellpadding="0" cellspacing="0" style="border-right:1px solid black" width="100%" height="100%">
<tr>
<td valign="top">
<div align="center">
<font color="#FFFFFF" face="verdana" size="3">
<b>GamePanelX</b><br />
Version <?php echo $config['GPX-VERSION']; ?>
</font>
<br /><br />
<font color="white">Logged in: <b><?php echo $GPXuserName; ?></b></font>
<br />
<div align="center"><b><a href="logout.php" target="_top">Logout</a></b> </div>
<br />
<br />
<table border="0" cellpadding="0" cellspacing="0" align="center" width="100%">
<!-- Server Setup -->
<tr style="vertical-align:middle;height:20px;line-height:19px;background-image:url('css/<?php echo $config['theme']; ?>/img/smallGrad.png')">
<td align="left"> <img src="images/main/settings-14.png" border="0" /> Configuración del servidor </td>
</tr>
<tr>
<td align="left"> <a href="AdminMain.php" target="mainFrame"><img src="images/servers/leftpanel/main.png" border="0" /> Página principal </a></td>
</tr>
<tr>
<td align="left"> <a href="Configuration.php" target="mainFrame"><img src="images/servers/leftpanel/settings.png" border="0" /> Editar configuración </a></td>
</tr>
<tr>
<td align="left"> <a href="SSHTest.php" target="mainFrame"><img src="images/servers/leftpanel/cmd_line.png" border="0" /> Prueba de conexión SSH </a></td>
</tr>
<tr>
<td align="left"> </td>
</tr>
<!-- User Editing -->
<tr style="vertical-align:middle;height:20px;line-height:19px;background-image:url('css/<?php echo $config['theme']; ?>/img/smallGrad.png')">
<td align="left"> <img src="images/main/user-group-14.png" border="0" /> Cuentas de usuarios</td>
</tr>
<tr>
<td align="left"> <a href="UserEditor.php" target="mainFrame"><img src="images/servers/leftpanel/user_group.png" border="0" /> Editor del usuarios</a></td>
</tr>
<tr>
<td align="left"> <a href="CreateUser.php" target="mainFrame"><img src="images/servers/leftpanel/add_user.png" border="0" /> Crear usuario </a></td>
</tr>
<tr>
<td align="left"> <a href="MyInfo.php" target="mainFrame"><img src="images/edit.png" border="0" /> Editar Mi Cuenta </a></td>
</tr>
<tr>
<td align="left"> </td>
</tr>
<!-- Remote Servers -->
<tr style="vertical-align:middle;height:20px;line-height:19px;background-image:url('css/<?php echo $config['theme']; ?>/img/smallGrad.png')">
<td align="left"> <img src="images/main/server-14.png" border="0" /> Servidores remotos </td>
</tr>
<tr>
<td align="left"> <a href="RemoteServerManager.php" target="mainFrame"><img src="images/servers/leftpanel/server.png" border="0" /> Administrador de servidores remotos </a></td>
</tr>
<tr>
<td align="left"> <a href="RemoteServerNew.php" target="mainFrame"><img src="images/servers/leftpanel/server_add.png" border="0" /> Crear servidor remoto </a></td>
</tr>
<tr>
<td align="left"> </td>
</tr>
<!-- User Servers -->
<tr height="20" style="vertical-align:middle;height:20px;line-height:19px;background-image:url('css/<?php echo $config['theme']; ?>/img/smallGrad.png')">
<td align="left"> <img src="images/servers/leftpanel/games.png" border="0" height="14" width="14" /> Servidores del usuario </td>
</tr>
<tr>
<td align="left"> <a href="ListServers.php?type=game" target="mainFrame"><img src="images/servers/leftpanel/games.png" border="0" /> Lista de Game Servers</a></td>
</tr>
<tr>
<td align="left"> <a href="ListServers.php?type=voip" target="mainFrame"><img src="images/servers/leftpanel/vent.png" border="0" /> Lista de Voip Servers</a></td>
</tr>
<tr>
<td align="left"> <a href="CreateServer.php?type=game" target="mainFrame"><img src="images/servers/leftpanel/games.png" border="0" /> Crear Game Server</a></td>
</tr>
<tr>
<td align="left"> <a href="CreateServer.php?type=voip" target="mainFrame"><img src="images/servers/leftpanel/vent.png" border="0" /> Crear Voip Server</a></td>
</tr>
<tr>
<td align="left"> </td>
</tr>
<!-- Supported Servers -->
<tr height="20">
<td align="left" style="vertical-align:middle;height:20px;line-height:20px;background-image:url('css/<?php echo $config['theme']; ?>/img/smallGrad.png')" valign="middle"> <img src="images/servers/small/games.png" border="0" height="14" width="14" /> Servidore de Arranque <a href="SupportedServers.php?type=voip" target="mainFrame"></a></td>
</tr>
<tr>
<td align="left"> <a href="SupportedServers.php?type=game" target="mainFrame"><img src="images/servers/leftpanel/games.png" border="0" /> </a><a href="CreateSupportedServer.php?type=voip" target="mainFrame">Arranque de</a><a href="SupportedServers.php?type=voip" target="mainFrame"></a><a href="SupportedServers.php?type=game" target="mainFrame"> Game Servers</a></td>
</tr>
<tr>
<td align="left"> <a href="SupportedServers.php?type=voip" target="mainFrame"><img src="images/servers/leftpanel/vent.png" border="0" /> </a><a href="CreateSupportedServer.php?type=voip" target="mainFrame">Arranque de</a><a href="SupportedServers.php?type=voip" target="mainFrame"> Voip Servers</a></td>
</tr>
<tr>
<td align="left"> <a href="CreateSupportedServer.php?type=game" target="mainFrame"><img src="images/servers/leftpanel/games.png" border="0" /> </a><a href="CreateSupportedServer.php?type=voip" target="mainFrame">Crear arranque de</a><a href="CreateSupportedServer.php?type=game" target="mainFrame"> Game Server</a></td>
</tr>
<tr>
<td align="left"> <a href="CreateSupportedServer.php?type=voip" target="mainFrame"><img src="images/servers/leftpanel/vent.png" border="0" /> Crear arranque de VoIP </a></td>
</tr>
<tr>
<td align="left"> <a href="XMLImport.php" target="mainFrame"><img src="images/xml-14.png" border="0" /> Importar datos de servidor XML </a></td>
</tr>
<tr>
<td align="left"> </td>
</tr>
<!-- Games Templates -->
<tr style="vertical-align:middle;height:20px;line-height:19px;background-image:url('css/<?php echo $config['theme']; ?>/img/smallGrad.png')">
<td align="left"> <img src="images/main/template-14.png" border="0" /> <span class="left_panel_title">Pre-Servers</span></td>
</tr>
<tr>
<td align="left"> <a href="Templates.php?type=game" target="mainFrame"><img src="images/servers/leftpanel/template_game.png" border="0" /> Game <span class="left_panel_title">Pre-Servers</span></a></td>
</tr>
<tr>
<td align="left"> <a href="Templates.php?type=voip" target="mainFrame"><img src="images/servers/leftpanel/template_voip.png" border="0" /> Voip <span class="left_panel_title">Pre-Servers</span></a></td>
</tr>
<tr>
<td align="left"> <a href="TemplateNew.php?type=game" target="mainFrame"><img src="images/servers/leftpanel/template_game.png" border="0" /> Create <span class="left_panel_title">Pre-Servers</span> Game</a></td>
</tr>
<tr>
<td align="left"> <a href="TemplateNew.php?type=voip" target="mainFrame"><img src="images/servers/leftpanel/template_voip.png" border="0" /> Crear <span class="left_panel_title">Pre-Servers</span> Voip</a></td>
</tr>
<tr>
<td align="left"> </td>
</tr>
<!-- About -->
<tr style="vertical-align:middle;height:20px;line-height:19px;background-image:url('css/<?php echo $config['theme']; ?>/img/smallGrad.png')">
<td align="left"> <img src="images/main/sobre_nosotros2.png" border="0" /> <span class="left_panel_title">GamePanel</span></td>
</tr>
<tr>
<td align="left"> <a href="About.php" target="mainFrame"><img src="images/main/sobre_nosotros2.png" border="0" /> Sobre Nosotros </a></td>
</tr>
<tr>
<td align="left"> </td>
</tr>
</table>
</div></td>
</tr>
</table>
</body>
</html>