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

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>标签源码碎片管理</title>
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. </head>
  11. <body>
  12. <table width="98%" cellspacing="1" cellpadding="0" align="center" class="table maintable my-3">
  13. <tr bgcolor="#f5f5f5" align="center">
  14. <td width="25%">标签文件名</td>
  15. <td width="33%" align="left">标签说明</td>
  16. <td width="22%">修改时间</td>
  17. <td width="20%">操作</td>
  18. </tr>
  19. <tr>
  20. <td colspan="4">
  21. <div class="alert alert-danger mb-0">修改系统标签有风险,请小心操作,文件存放在 ../system/taglib文件夹</div>
  22. </td>
  23. </tr>
  24. <?php
  25. $dh = dir($libdir);
  26. while($filename=$dh->read())
  27. {
  28. if (!preg_match("#\.php$#", $filename)) continue;
  29. $filetime = filemtime($libdir.'/'.$filename);
  30. $filetime = MyDate("Y-m-d H:i",$filetime);
  31. $fileinfo = GetHelpInfo(str_replace('.lib.php','',$filename));
  32. ?>
  33. <tr onMouseMove="javascript:this.bgColor='#e9ecef';" onmouseout="javascript:this.bgColor='#ffffff';">
  34. <td><img src="../static/web/img/htm.gif"><?php echo $filename;?></td>
  35. <td><?php echo $fileinfo;?></td>
  36. <td align="center"><?php echo $filetime;?></td>
  37. <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>
  38. </tr>
  39. <?php }?>
  40. <tr>
  41. <td colspan="4"><a href="tpl.php?action=addnewtag" class="btn btn-success btn-sm">增加一个新的标签</a></td>
  42. </tr>
  43. </table>
  44. </body>
  45. </html>