plus_edit.htm
2.42 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>修改插件</title>
<style type="text/css">
<!--
body {
background-image: url(images/allbg.gif);
}
-->
</style>
<link href="css/base.css" rel="stylesheet" type="text/css">
</head>
<body topmargin="8">
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
<form name="form1" action="plus_edit.php" method="post">
<input type='hidden' name='dopost' value='saveedit'>
<input type='hidden' name='aid' value='<?php echo $aid?>'>
<tr>
<td height="20" colspan="2" background="images/tbg.gif" style="padding-left:10px;"><b><a href="plus_main.php"><u>插件管理</u></a>
> 修改插件:</b> </td>
</tr>
<tr>
<td width="19%" align="center" bgcolor="#FFFFFF">插件名称</td>
<td width="81%" bgcolor="#FFFFFF">
<input type='text' name='plusname' style='width:180px' value='<?php echo $row['plusname']?>'>
</td>
</tr>
<tr>
<td align="center" bgcolor="#FFFFFF">作者</td>
<td bgcolor="#FFFFFF">
<?php echo $row['writer']?>
</td>
</tr>
<tr>
<td align="center" bgcolor="#FFFFFF">菜单配置</td>
<td bgcolor="#FFFFFF">
<textarea name="menustring" rows="6" id="menustring" style="width:80%"><?php echo $row['menustring']?></textarea>
</td>
</tr>
<tr>
<td align="center" bgcolor="#FFFFFF">文件列表</td>
<td bgcolor="#FFFFFF">文件用","分开,路径相对于管理目录(当前目录)<br>
<textarea name="filelist" rows="8" id="filelist" style="width:80%"><?php echo $row['filelist']?></textarea></td>
</tr>
<tr bgcolor="#F9FDF0">
<td height="28" colspan="2">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="26%"> </td>
<td width="15%"><input name="imageField" class="np" type="image" src="images/button_ok.gif" width="60" height="22" border="0"></td>
<td width="59%"><img src="images/button_back.gif" width="60" height="22" onClick="location='plus_main.php';" style="cursor:pointer"></td>
</tr>
</table>
</td>
</tr>
</form>
</table>
</body>
</html>