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

68 lines
3.0KB

  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/css/bootstrap.min.css">
  8. <link rel="stylesheet" href="../static/web/css/select2.min.css">
  9. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  10. <link rel="stylesheet" href="../static/web/css/admin.css">
  11. <script src="../static/web/js/jquery.min.js"></script>
  12. <script src="../static/web/js/select2.min.js"></script>
  13. <script src="../static/web/js/i18n/zh-CN.js"></script>
  14. <script>
  15. function onTagSubmit() {
  16. document.form1.submit();
  17. }
  18. </script>
  19. </head>
  20. <body>
  21. <table cellpadding="3" cellspacing="1" align="center" class="table maintable my-3">
  22. <form name="form1" action="makehtml_tag_action_list.php" method="get" target="stafrm">
  23. <tr>
  24. <td bgcolor="#f5f5f5" colspan="2">更新标签</td>
  25. </tr>
  26. <tr>
  27. <td colspan="2">
  28. <div class="alert alert-info mb-0">标签说明:生成静态文件后,浏览动态文件则直接跳转静态文件,如果需要动态浏览,删除对应文件即可。标签首页模板:<?php echo $cfg_templets_dir;?>/<?php echo $cfg_df_style?>/tag.htm 标签列表页模板:<?php echo $cfg_templets_dir;?>/<?php echo $cfg_df_style?>/taglist.htm</div>
  29. </td>
  30. </tr>
  31. <?php if ($tagid > 0) {$row = $dsql->GetOne("SELECT tag FROM `#@__tagindex` WHERE id = '$tagid' ");?>
  32. <tr>
  33. <td width="260">输入标签:</td>
  34. <td><input type="hidden" name="tagid" value="<?php echo $tagid;?>"><?php echo $row['tag'];?> <a class="text-primary" href="makehtml_taglist.php">重新选择</a></td>
  35. </tr>
  36. <?php } else {?>
  37. <tr>
  38. <td width="260">起始id:</td>
  39. <td><input type="text" name="startid" id="startid" class="admin-input-sm">(空或0表示从头开始)</td>
  40. </tr>
  41. <tr>
  42. <td>结束id:</td>
  43. <td><input type="text" name="endid" id="endid" class="admin-input-sm">(空或0表示直到结束id)</td>
  44. </tr>
  45. <?php }?>
  46. <tr>
  47. <td>生成位置:</td>
  48. <td><input type="text" name="tagsdir" id="tagsdir" value="<?php echo $cfg_tags_dir;?>" class="admin-input-sm" disabled> <a href="sys_info.php">系统设置</a>中其他选项“标签生成目录”项进行调整</td>
  49. </tr>
  50. <tr>
  51. <td>每次最大创建页数:</td>
  52. <td><input type="text" name="maxpagesize" id="maxpagesize" value="50" class="admin-input-sm"> 个文件</td>
  53. </tr>
  54. <tr>
  55. <td bgcolor="#e9ecef" colspan="2" align="center"><button type="button" name="b112" class="btn btn-success btn-sm" onClick="document.form1.action='makehtml_taglist_action.php';onTagSubmit();">生成标签</button></td>
  56. </tr>
  57. </form>
  58. <tr>
  59. <td colspan="2">结果:</td>
  60. </tr>
  61. <tr>
  62. <td colspan="2" id="mtd">
  63. <div id="mdv" class="admin-win-iframe"><iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe></div>
  64. </td>
  65. </tr>
  66. </table>
  67. </body>
  68. </html>