国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

56 líneas
2.2KB

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