-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_menu.php
More file actions
147 lines (94 loc) · 3.65 KB
/
Copy pathadmin_menu.php
File metadata and controls
147 lines (94 loc) · 3.65 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
<?php
/*
#######################################
# e107 website system plguin #
# AACGC Falling Objects #
# by M@CH!N3 #
# http://www.AACGC.com #
#######################################
*/
//-----------------------------------------------------------------------------------------------------------+
//-----------------------------------------------------------------------------------------------------------+
$text1 .= "
<table class='fborder' style='width:100%;'>
<tr>
<td style='width:30%' class='button'>";
if (e_PAGE == "admin_main.php") {
$text1 .= "
<b>
<a style='cursor:hand; text-decoration:none' href='admin_main.php'>>> Main <<</a></b>";
} else {
$text1 .= "
<a style='cursor:hand; text-decoration:none' href='admin_main.php'>Main</a>";}
$text1 .= "
</td>
</tr><td style='width:30%' class='header'>-</b>";
$text1 .= "</td>
</tr>
<tr>
<td style='width:30%' class='button'>";
if (e_PAGE == "admin_config.php") {
$text1 .= "
<b>
<a style='cursor:hand; text-decoration:none' href='admin_config.php'>>> Settings <<</a></b>";
} else {
$text1 .= "
<a style='cursor:hand; text-decoration:none' href='admin_config.php'>Settings</a>";}
$text1 .= "
</td>
</tr><td style='width:30%' class='header'>-</b>";
$text1 .= "</td>
</tr>
<tr>
<td style='width:30%' class='button'>";
if (e_PAGE == "admin_custom_pages.php") {
$text1 .= "
<b>
<a style='cursor:hand; text-decoration:none' href='admin_custom_pages.php'>>> Custom Pages <<</a></b>";
} else {
$text1 .= "
<a style='cursor:hand; text-decoration:none' href='admin_custom_pages.php'>Custom Pages</a>";}
$text1 .= "
</td>
</tr><td style='width:30%' class='header'>-</b>";
$text1 .= "
</td>
</tr>
<tr>
<td style='width:30%' class='button'>";
if (e_PAGE == "admin_vupdate.php")
{$text1 .= "
<b>
<a style='cursor:hand; text-decoration:none' href='admin_vupdate.php'>>> Check For Updates <<</a>
</b>";}
else
{$text1 .= "
<a style='cursor:hand; text-decoration:none' href='admin_vupdate.php'>Check For Updates</a>";}
$text1 .= "</td>
</tr>";
//--------------------------------------------------------------------------------------------
$text1 .= "<tr><td><br><br><br><br><br><br>
<center>
Donate To AACGC.
<form action='https://www.paypal.com/cgi-bin/webscr' method='post'>
<input type='hidden' name='cmd' value='_s-xclick'>
<input type='hidden' name='hosted_button_id' value='6506985'>
<input type='image' src='https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif' border='0' name='submit' alt='PayPal - The safer, easier way to pay online!'>
<img alt='' border='0' src='https://www.paypal.com/en_US/i/scr/pixel.gif' width='1' height='1'>
</form>
<br><br>
</td></tr>";
$text1 .= "<tr>
<td style='width:30%' class='button'>
<b><a style='cursor:hand; text-decoration:none' href='http://www.aacgc.com/SSGC/e107_plugins/faq/faq.php' target='_blank'>AACGC FAQs</a></b>
</td>
</tr>";
$text1 .= "<tr><td style='width:30%' class='header'>-</b></td></tr>";
$text1 .= "<tr>
<td style='width:30%' class='button'>
<b><a style='cursor:hand; text-decoration:none' href='http://www.aacgc.com/SSGC/e107_plugins/helpdesk3_menu/helpdesk.php' target='_blank'>AACGC HelpDesk</a></b>
</td>
</tr>";
//-----------------------------------------------------------------------------------------------------
$ns -> tablerender($ttl1, $text1);
?>