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

70 lines
2.8KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>标签源码碎片管理</title>
  6. <link href="css/base.css" rel="stylesheet" type="text/css" />
  7. <style type="text/css">
  8. .linerow { border-bottom: 1px solid #CBD8AC; }
  9. td { padding-left:5px; }
  10. </style>
  11. </head>
  12. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  13. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" style="margin-bottom:6px;">
  14. <tr>
  15. <td height="28" background="images/tbg.gif" colspan="7" style="padding-left:10px;">
  16. <b>标签源码碎片管理</b> &nbsp; (DedeCMS 5.3及以上版本标签源码是完全独立的,懂程序的用户可以按需修改或自行增加标签)
  17. </td>
  18. </tr>
  19. </table>
  20. <table width='98%' border='0' cellspacing='1' cellpadding='0' bgcolor="#cfcfcf" align="center">
  21. <tr height="26" align="center">
  22. <td width="25%" background="images/wbg.gif"><strong>标签文件名</strong></td>
  23. <td width="33%" background="images/wbg.gif" align="left"><strong>标签说明</strong></td>
  24. <td width="22%" background="images/wbg.gif"><strong>修改时间</strong></td>
  25. <td width="20%" background="images/wbg.gif"><strong>操作</strong></td>
  26. </tr>
  27. <tr>
  28. <td colspan='4' height="28" bgcolor="#F9FCEF">
  29. <div style='float:left'>
  30. <b>
  31. 当前位置:标签源码碎片管理(文件存放在 ../include/taglib 文件夹)
  32. </b>
  33. </div>
  34. <div style='float:right;padding-right:10px'>
  35. <a href='tpl.php?action=addnewtag'>[<u>增加一个新的标签</u>]</a>
  36. </div>
  37. </td>
  38. </tr>
  39. <?php
  40. $dh = dir($libdir);
  41. while($filename=$dh->read())
  42. {
  43. if(!preg_match("#\.php$#", $filename)) continue;
  44. $filetime = filemtime($libdir.'/'.$filename);
  45. $filetime = MyDate("Y-m-d H:i",$filetime);
  46. $fileinfo = GetHelpInfo(str_replace('.lib.php','',$filename));
  47. ?>
  48. <tr height="26" bgcolor='#FFFFFF' onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
  49. <td>
  50. <img src='images/htm.gif' border='0' align='absmiddle' /><?php echo $filename; ?>
  51. </td>
  52. <td>
  53. <?php echo $fileinfo; ?>
  54. </td>
  55. <td align='center'>
  56. <?php echo $filetime; ?>
  57. </td>
  58. <td align='center'>
  59. <a href='tpl.php?action=edittag&filename=<?php echo $filename; ?>'>[编辑]</a>
  60. </td>
  61. </tr>
  62. <?php } ?>
  63. <tr>
  64. <td colspan="4" height='32' bgcolor="#F9FCEF">
  65. <p style="text-align:center;color:red">修改系统标签有风险,请小心操作!</p>
  66. </td>
  67. </tr>
  68. </table>
  69. </body>
  70. </html>