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

58 lines
2.3KB

  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. <style>
  11. .linerow {
  12. border-bottom: 1px solid #CBD8AC;
  13. }
  14. td {
  15. padding-left: 6px;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <table width="98%" cellspacing="1" cellpadding="0" align="center" class="table maintable mt-3 mb-3">
  21. <tr height="26" align="center">
  22. <td width="25%" background="../static/web/img/wbg.gif">标签文件名</td>
  23. <td width="33%" background="../static/web/img/wbg.gif" align="left">标签说明</td>
  24. <td width="22%" background="../static/web/img/wbg.gif">修改时间</td>
  25. <td width="20%" background="../static/web/img/wbg.gif">操作</td>
  26. </tr>
  27. <tr>
  28. <td colspan="4" height="26">
  29. <div style="float:left;line-height:26px">当前位置:标签源码碎片管理(文件存放在 ../system/taglib 文件夹)</div>
  30. <div style="float:right;padding-right:10px">
  31. <a href="tpl.php?action=addnewtag" class="btn btn-success btn-sm">增加一个新的标签</a>
  32. </div>
  33. </td>
  34. </tr>
  35. <tr>
  36. <td colspan="4" height="26">
  37. <div class="alert alert-danger mb-0">修改系统标签有风险,请小心操作</div>
  38. </td>
  39. </tr>
  40. <?php
  41. $dh = dir($libdir);
  42. while($filename=$dh->read())
  43. {
  44. if(!preg_match("#\.php$#", $filename)) continue;
  45. $filetime = filemtime($libdir.'/'.$filename);
  46. $filetime = MyDate("Y-m-d H:i",$filetime);
  47. $fileinfo = GetHelpInfo(str_replace('.lib.php','',$filename));
  48. ?>
  49. <tr height="26" onmousemove="javascript:this.bgColor='#F8FCF1';" onmouseout="javascript:this.bgColor='#ffffff';">
  50. <td><img src="../static/web/img/htm.gif"><?php echo $filename; ?></td>
  51. <td><?php echo $fileinfo; ?></td>
  52. <td align="center"><?php echo $filetime; ?></td>
  53. <td align="center"><a href="tpl.php?action=edittag&filename=<?php echo $filename; ?>" class="btn btn-success btn-sm"><i class="fa fa-pencil-square-o"></i> 编辑</a></td>
  54. </tr>
  55. <?php } ?>
  56. </table>
  57. </body>
  58. </html>