-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
74 lines (68 loc) · 1.93 KB
/
index.php
File metadata and controls
74 lines (68 loc) · 1.93 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
<?php
require_once('includes/config.php');
require_once('includes/functions.php');
require_once('includes/header.php');
require_once('includes/navbar.php');
require_once('includes/menu.php');
require_once('includes/content_start.php');
/* This is where the Content Scripts are included and parsed */
/* Index Variable */
if (isset($_GET['M'])) {
$Mod = $_GET['M'];
} else if (isset($_GET['Module'])) {
$Mod = $_GET['Module'];
}
if ($Mod == "Commander") {
include('modules/commander/commander.php');
}
if ($Mod == "ItemEditor") {
include('modules/ItemEditor/ItemEditor.php');
}
if ($Mod == "Quests") {
include('modules/quests/index.php');
}
if ($Mod == "TaskEditor") {
include('modules/TaskEditor/TaskEditor.php');
}
if ($Mod == "Character") {
include('modules/Character/Character.php');
}
if ($Mod == "NPC") {
include('modules/NPC/NPC.php');
}
if ($Mod == "NPC2") {
include('modules/NPC/NPC2.php');
}
if ($Mod == "ServerManager") {
include('modules/ServerManager/ServerManager.php');
}
if ($Mod == "QueryServ") {
include('modules/QueryServ/QueryServ.php');
}
if ($Mod == "SpellEditor") {
include('modules/SpellEditor/SpellEditor.php');
}
if ($Mod == "ZT") {
include('modules/Zone_Tools/zonetools.php');
}
if ($Mod == "dbstr") {
include('modules/dbstr/dbstr.php');
} else if ($Mod == "") {
echo '
<center>
<div class="logo fadeIn">
<a href="index.html">
<img src="cust_assets/eqemu.png" alt="logo" class="logo-default" style="margin: 8px 0 0 0;"><br>
<img src="cust_assets/eoc-fd.png" alt="logo" class="logo-default" style="width:auto;">
</a>
</div>
<hr>
<h2 class="page-title">Welcome to EQEmu Operations Center</h2><hr>
</center>
<h4 class="page-title">Information Regarding EOC and Tools</h4><hr>
';
require_once('includes/instructions.php');
}
require_once('includes/content_end.php');
require_once('includes/quick_sidebar.php');
require_once('includes/footer.php');