国内流行的内容管理系统(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.

45 lines
1.7KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang;?>">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>修改插件</title>
  7. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  8. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. </head>
  11. <body>
  12. <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  13. <form name="form1" action="plus_edit.php" method="post">
  14. <input type="hidden" name="dopost" value="saveedit">
  15. <input type="hidden" name="aid" value="<?php echo $aid?>">
  16. <tr>
  17. <td bgcolor="#f8f8f8" colspan="2"><a href="plus_main.php">插件管理</a> &gt; 修改插件</td>
  18. </tr>
  19. <tr>
  20. <td width="260">插件名称</td>
  21. <td><input type="text" name="plusname" style="width:160px" value="<?php echo $row['plusname']?>"></td>
  22. </tr>
  23. <tr>
  24. <td>作者</td>
  25. <td><?php echo $row['writer']?></td>
  26. </tr>
  27. <tr>
  28. <td>菜单配置</td>
  29. <td><textarea name="menustring" id="menustring" class="biz-textarea"><?php echo $row['menustring']?></textarea></td>
  30. </tr>
  31. <tr>
  32. <td>文件列表</td>
  33. <td>文件用&quot;,&quot;分开,路径相对于管理目录(当前目录)<br>
  34. <textarea name="filelist" id="filelist" class="biz-textarea"><?php echo $row['filelist']?></textarea>
  35. </td>
  36. </tr>
  37. <tr>
  38. <td bgcolor="#f8f8f8" colspan="2" align="center" class="py-2">
  39. <button type="submit" class="btn btn-success btn-sm">确定</button>
  40. </td>
  41. </tr>
  42. </form>
  43. </table>
  44. </body>
  45. </html>