-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (26 loc) · 695 Bytes
/
Copy pathindex.php
File metadata and controls
28 lines (26 loc) · 695 Bytes
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
<?php
require "includes/rmi-functions.php";
require "includes/header.php";
require "includes/navigation.php";
?>
<div id="page-wrapper">
<br>
<div class="row">
<?php
if ($wurmPower >= $view_index) {
if ($wurmPower >= $view_index_serversummary) {
require "includes/index/serverinfo.php";
}
if ($wurmPower >= $view_index_voter) {
require "includes/index/wurmvoter.php";
}
if ($wurmPower >= $view_index_useraccounts) {
require "includes/index/useraccounts.php";
}
} else {
echo("<b>Sorry, you do not have access to view index.php</b>");
}
?>
</div>
</div>
<?php require "includes/footer.php"; ?>