forked from Jimako-e107-plugins/e107-old-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_main.php
78 lines (64 loc) · 2.04 KB
/
admin_main.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
<?php
/*
#######################################
# e107 website system plguin #
# AACGC Friend System #
# by M@CH!N3 #
# http://www.AACGC.com #
#######################################
*/
require_once('../../class2.php');
if (!defined('e107_INIT'))
{exit;}
if (!getperms('P'))
{header('location:' . e_HTTP . 'index.php');
exit;}
require_once(e_ADMIN . 'auth.php');
if (!defined('ADMIN_WIDTH'))
{define(ADMIN_WIDTH, 'width:100%;');}
require(e_PLUGIN . 'aacgc_friendsys/plugin.php');
$plugin_text = "
<table class='fborder' style='" . ADMIN_WIDTH . "'>
<tr>
<td class='fcaption' colspan='2'>Created by All American Computer Gamers Community (AACGC)</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >Plugin</td>
<td class='forumheader3'>" . $eplug_name . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >Author</td>
<td class='forumheader3'>" . $eplug_author . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >Version</td>
<td class='forumheader3'>" . $eplug_version . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >Status</td>
<td class='forumheader3'>Released</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >Disclaimer</td>
<td class='forumheader3'>No responsibility can be accepted for the failure of this plugin in any way shape or form. You use entirely at your own risk.</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >Copyright</td>
<td class='forumheader3'>AACGC FS 2010</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >Website</td>
<td class='forumheader3'><a href='http://www.aacgc.com'>www.AACGC.com</a></td>
</tr>
<tr>
<td class='forumheader3' colspan='2'>
<strong>Support</strong><br /><br />Support for this plug-in is ONLY at AACGC and nowhere else!
</td>
</tr>
<tr>
<td class='fcaption' colspan='2'> </td>
</tr>
</table>";
$ns->tablerender("AACGC Plugin Information", $plugin_text);
require_once(e_ADMIN . 'footer.php');
?>