-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_readme.php
More file actions
80 lines (79 loc) · 2.35 KB
/
admin_readme.php
File metadata and controls
80 lines (79 loc) · 2.35 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
<?php
// **************************************************************************
// *
// * KBASE for e107 v7xx
// *
// **************************************************************************
require_once("../../class2.php");
if (!defined('e107_INIT'))
{
exit;
}
if (!getperms("P"))
{
header("location:" . e_HTTP . "index.php");
exit;
}
include_lan(e_PLUGIN . "kbase/languages/readme/" . e_LANGUAGE . ".php");
require_once("plugin.php");
require_once(e_ADMIN . "auth.php");
if (!defined('ADMIN_WIDTH'))
{
define(ADMIN_WIDTH, "width:100%;");
}
$welcome_text = "
<table class='fborder' style='" . ADMIN_WIDTH . "'>
<tr>
<td class='fcaption' colspan='2'>" . KBASE_R01 . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R02 . "</td>
<td class='forumheader3'>" .$eplug_name . " </td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R04 . "</td>
<td class='forumheader3'>" . $eplug_author . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R06 . "</td>
<td class='forumheader3'>" .$eplug_version . " </td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R08 . "</td>
<td class='forumheader3'>" . KBASE_R09 . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R10 . "</td>
<td class='forumheader3'>" . KBASE_R11 . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R12 . "</td>
<td class='forumheader3'>" . KBASE_R13 . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R14 . "</td>
<td class='forumheader3'>" . KBASE_R15 . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R16 . "</td>
<td class='forumheader3'>" . KBASE_R17 . "</td>
</tr>
<tr>
<td class='forumheader3' style='width:15%;' >" . KBASE_R25 . "</td>
<td class='forumheader3'><span style='color:#ff4444;'>" . KBASE_R24 . "</span></td>
</tr>
<tr>
<td class='forumheader3' colspan='2'>
<strong>" . KBASE_R18 . "</strong><br /><br />" . KBASE_R19 . "<br /><br />
<strong>" . KBASE_R20 . "</strong><br /><br />" . KBASE_R21 . "<br /><br />
<strong>" . KBASE_R22 . "</strong><br /><br />" . KBASE_R23 . "
</td>
</tr>
<tr>
<td class='fcaption' colspan='2'> </td>
</tr>
</table>";
// readme;
$ns->tablerender(KBASE_R01, $welcome_text);
require_once(e_ADMIN . "footer.php");
?>