国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.4KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>修改插件</title>
  6. <style>
  7. <!--
  8. body {
  9. background-image: url(../static/web/img/allbg.gif);
  10. }
  11. -->
  12. </style>
  13. <link rel="stylesheet" href="../static/web/css/admin.css">
  14. </head>
  15. <body topmargin="8">
  16. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  17. <form name="form1" action="plus_edit.php" method="post">
  18. <input type='hidden' name='dopost' value='saveedit'>
  19. <input type='hidden' name='aid' value='<?php echo $aid?>'>
  20. <tr>
  21. <td height="26" colspan="2" background="../static/web/img/tbg.gif" style="padding-left:10px"><a href="plus_main.php">插件管理</a> &gt; 修改插件: </td>
  22. </tr>
  23. <tr>
  24. <td width="19%" align="center" bgcolor="#FFFFFF">插件名称</td>
  25. <td width="81%" bgcolor="#FFFFFF">
  26. <input type='text' name='plusname' style='width:180px' value='<?php echo $row['plusname']?>'>
  27. </td>
  28. </tr>
  29. <tr>
  30. <td align="center" bgcolor="#FFFFFF">作者</td>
  31. <td bgcolor="#FFFFFF">
  32. <?php echo $row['writer']?>
  33. </td>
  34. </tr>
  35. <tr>
  36. <td align="center" bgcolor="#FFFFFF">菜单配置</td>
  37. <td bgcolor="#FFFFFF">
  38. <textarea name="menustring" rows="6" id="menustring" style="width:80%"><?php echo $row['menustring']?></textarea>
  39. </td>
  40. </tr>
  41. <tr>
  42. <td align="center" bgcolor="#FFFFFF">文件列表</td>
  43. <td bgcolor="#FFFFFF">文件用&quot;,&quot;分开,路径相对于管理目录(当前目录)<br>
  44. <textarea name="filelist" rows="8" id="filelist" style="width:80%"><?php echo $row['filelist']?></textarea></td>
  45. </tr>
  46. <tr bgcolor="#F9FDF0">
  47. <td height="26" colspan="2">
  48. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  49. <tr>
  50. <td width="26%"></td>
  51. <td width="15%"><input name="imageField" class="np" type="image" src="../static/web/img/button_ok.gif"></td>
  52. <td width="59%"><img src="../static/web/img/button_back.gif" width="60" height="26" onClick="location='plus_main.php';" style="cursor:pointer"></td>
  53. </tr>
  54. </table>
  55. </td>
  56. </tr>
  57. </form>
  58. </table>
  59. </body>
  60. </html>