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

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>标签源码管理</title>
  7. <link rel="stylesheet" href="/static/web/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. <div class="container-fluid">
  13. <ol class="breadcrumb">
  14. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  15. <li class="breadcrumb-item active">标签源码管理</li>
  16. </ol>
  17. <div class="card shadow-sm">
  18. <div class="card-header">标签源码管理</div>
  19. <div class="card-body">
  20. <div class="alert alert-warning">默认标签源码文件,请谨慎修改</div>
  21. <div class="table-responsive">
  22. <table class="table table-borderless">
  23. <thead>
  24. <tr>
  25. <td scope="col">标签文件名</td>
  26. <td scope="col">标签说明</td>
  27. <td scope="col">修改时间</td>
  28. <td scope="col">操作</td>
  29. </tr>
  30. </thead>
  31. <tbody>
  32. <?php
  33. $dh = dir($libdir);
  34. while($filename=$dh->read())
  35. {
  36. if (!preg_match("#\.php$#", $filename)) continue;
  37. $filetime = filemtime($libdir.'/'.$filename);
  38. $filetime = MyDate("Y-m-d H:i:s",$filetime);
  39. $fileinfo = GetHelpInfo(str_replace('.lib.php','',$filename));
  40. ?>
  41. <tr>
  42. <td><img src="/static/web/img/icon_php.png"> <?php echo $filename;?></td>
  43. <td><?php echo $fileinfo;?></td>
  44. <td><?php echo $filetime;?></td>
  45. <td><a href="tpl.php?action=edittag&filename=<?php echo $filename;?>" class="btn btn-light btn-sm"><i class="fa fa-pencil-square" title="修改"></i></a></td>
  46. </tr>
  47. <?php }?>
  48. <tr>
  49. <td colspan="4" align="center"><a href="tpl.php?action=addnewtag" class="btn btn-success btn-sm">添加标签</a></td>
  50. </tr>
  51. </tbody>
  52. </table>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </body>
  58. </html>