-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminDM.php
More file actions
214 lines (209 loc) · 7.91 KB
/
adminDM.php
File metadata and controls
214 lines (209 loc) · 7.91 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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
session_start();
require('vendor/autoload.php');
require_once 'config/config.php';
require_once BASE_PATH . '/includes/auth_validate.php';
require __DIR__ . "/src/functions.php";
$ini_file='game_list.ini';
#$ini = new INI('D:Program Files (x86)/Steam/steamapps/common/Dead Matter Dedicated Server/deadmatter/Saved/Config/WindowsServer/game.ini');
#$ini->data['/Script/DeadMatter.SurvivalBaseGamemode']['Whitelist'][74] = '76561190000000001';
#$ini->write();
$datas = parse_ini_file( $ini_file, true );
$client = new \Zyberspace\SteamWebApi\Client('C93FFB23FD0B17F012878B8B3FA69379');
$steamUser = new \Zyberspace\SteamWebApi\Interfaces\ISteamUser($client);
# print_r($datas)
?>
<?php include BASE_PATH . '/includes/header.php'; ?>
<!-- Main container -->
<div id="page-wrapper">
<div class="row">
<div class="col-lg-6">
<h1 class="page-header">Admin in Dead Matter</h1>
</div>
</div>
<?php include BASE_PATH . '/includes/flash_messages.php'; ?>
<!-- Filters Ne fonctionne pas -->
<div class="well text-center filter-form">
<label for="myInput">Search</label>
<input type="text" class="form-control" id="myInput" onkeyup="myFunction()" placeholder="Search for names..">
</div>
<!-- //Filters -->
<div class="row">
<div class="col-lg-6">
<h4 class="page-header">Admins</h4>
</div>
<div class="col-lg-6">
<div class="page-action-links text-right">
<a href="add_adminDM.php?operation=create" class="btn btn-success"><i class="glyphicon glyphicon-plus"></i> Add new</a>
</div>
</div>
</div>
<table id="myTable" class="table table-striped table-bordered table-condensed" data-name="listtable">
<tbody>
<thead>
<tr class="header">
<th width="10%">ID</th>
<th width="40%">SteamID64</th>
<th width="40%">Steam</th>
<th width="10%">Actions</th>
</tr>
</thead>
<?php
$x = 0;
foreach( $datas['/Script/DeadMatter.DMGameSession']['admins'] as $data)
{
?>
<tbody>
<tr>
<td>
<?php
$id = $x++;
echo $id;
?>
</td>
<td><?php
echo ( $data ); ?></td>
<td><a href="http://steamcommunity.com/profiles/<?php echo htmlentities($data); ?>" title="Click here to go to">
<?php
if($data == "DONOTREMOVE"){
echo("DONOTREMOVE");
}else {
$response = $steamUser->GetPlayerSummariesV2($data);
echo($response->response->players[0]->personaname);
}
?></a></td>
<td>
<a href="edit_adminDM.php?adminDM_id=<?php echo $id; ?>&steam_id=<?php echo $data; ?>&operation=edit" class="btn btn-primary"><i class="glyphicon glyphicon-edit"></i></a>
<a href="#" class="btn btn-danger delete_btn" data-toggle="modal" data-target="#confirm-delete-<?php echo $id; ?>"><i class="glyphicon glyphicon-trash"></i></a>
</td>
</tr>
<!-- Delete Confirmation Modal -->
<div class="modal fade" id="confirm-delete-<?php echo $id; ?>" role="dialog">
<div class="modal-dialog">
<form action="delete_adminDM.php" method="POST">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Confirm</h4>
</div>
<div class="modal-body">
<input type="hidden" name="del_id" id="del_id" value="<?php echo $id; ?>">
<p>Are you sure you want to delete this row?</p>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-default pull-left">Yes</button>
<button type="button" class="btn btn-default" data-dismiss="modal">No</button>
</div>
</div>
</form>
</div>
</div>
<!-- //Delete Confirmation Modal -->
<?php
}
?>
</tbody>
</table>
<div class="row">
<div class="col-lg-6">
<h4 class="page-header">SuperAdmins</h4>
</div>
<div class="col-lg-6">
<div class="page-action-links text-right">
<a href="add_superadmin.php?operation=create" class="btn btn-success"><i class="glyphicon glyphicon-plus"></i> Add new</a>
</div>
</div>
</div>
<table id="myTable" class="table table-striped table-bordered table-condensed" data-name="listtable">
<tbody>
<thead>
<tr class="header">
<th width="10%">ID</th>
<th width="40%">SteamID64</th>
<th width="40%">Steam</th>
<th width="10%">Actions</th>
</tr>
</thead>
<?php
$x = 0;
foreach( $datas['/Script/DeadMatter.DMGameSession']['Superadmins'] as $data )
{
?>
<tbody>
<tr>
<td>
<?php
$id = $x++;
echo $id;
?>
</td>
<td><?php
echo ( $data ); ?></td>
<td><a href="http://steamcommunity.com/profiles/<?php echo htmlentities($data); ?>" title="Click here to go to">
<?php
if($data == "DONOTREMOVE"){
echo("DONOTREMOVE");
}else {
$response = $steamUser->GetPlayerSummariesV2($data);
echo($response->response->players[0]->personaname);
}
?></a></td>
<td>
<a href="edit_superadmin.php?superadmin_id=<?php echo $id; ?>&steam_id=<?php echo $data; ?>&operation=edit" class="btn btn-primary"><i class="glyphicon glyphicon-edit"></i></a>
<a href="#" class="btn btn-danger delete_btn" data-toggle="modal" data-target="#confirm-delete-<?php echo $id; ?>"><i class="glyphicon glyphicon-trash"></i></a>
</td>
</tr>
<!-- Delete Confirmation Modal -->
<div class="modal fade" id="confirm-delete-<?php echo $id; ?>" role="dialog">
<div class="modal-dialog">
<form action="delete_superadmin.php" method="POST">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Confirm</h4>
</div>
<div class="modal-body">
<input type="hidden" name="del_id" id="del_id" value="<?php echo $id; ?>">
<p>Are you sure you want to delete this row?</p>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-default pull-left">Yes</button>
<button type="button" class="btn btn-default" data-dismiss="modal">No</button>
</div>
</div>
</form>
</div>
</div>
<!-- //Delete Confirmation Modal -->
<?php
}
?>
</tbody>
</table>
</div>
<script>
function myFunction() {
var input, filter, table, tr, td, i,alltables;
alltables = document.querySelectorAll("table[data-name=listtable]");
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
alltables.forEach(function(table){
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[1];
td = tr[i].getElementsByTagName("td")[2];
if (td) {
if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
});
}
</script>
<!-- //Main container -->
<?php include BASE_PATH . '/includes/footer.php'; ?>