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

48 lines
1.7KB

  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 align="center" class="table maintable my-3">
  13. <tr>
  14. <td colspan="4" bgcolor="#f5f5f5">标签源码管理</td>
  15. </tr>
  16. <tr>
  17. <td colspan="4">
  18. <div class="alert alert-danger mb-0">系统标签源码文件,修改不当会导致标签错误</div>
  19. </td>
  20. </tr>
  21. <tr bgColor="#e9ecef" align="center">
  22. <td width="26%">标签文件名</td>
  23. <td width="26%">标签说明</td>
  24. <td width="26%">修改时间</td>
  25. <td>操作</td>
  26. </tr>
  27. <?php
  28. $dh = dir($libdir);
  29. while($filename=$dh->read())
  30. {
  31. if (!preg_match("#\.php$#", $filename)) continue;
  32. $filetime = filemtime($libdir.'/'.$filename);
  33. $filetime = MyDate("Y-m-d H:i:s",$filetime);
  34. $fileinfo = GetHelpInfo(str_replace('.lib.php','',$filename));
  35. ?>
  36. <tr align="center">
  37. <td align="left"><img src="../static/web/img/icon_htm.png"><?php echo $filename;?></td>
  38. <td><?php echo $fileinfo;?></td>
  39. <td><?php echo $filetime;?></td>
  40. <td align="left"><a href="tpl.php?action=edittag&filename=<?php echo $filename;?>" class="btn btn-light btn-sm"><i class="fa fa-pencil-square"></i> 修改</a></td>
  41. </tr>
  42. <?php }?>
  43. <tr>
  44. <td bgcolor="#f5f5f5" colspan="4" align="center"><a href="tpl.php?action=addnewtag" class="btn btn-success btn-sm">添加标签</a></td>
  45. </tr>
  46. </table>
  47. </body>
  48. </html>