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

76 lines
3.4KB

  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. </head>
  8. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  9. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#cfcfcf">
  10. <tr>
  11. <td height="19" background="images/tbg.gif" style="padding-left:10px;"><b><a href="mytag_main.php">自定义标记管理</a></b>&gt;&gt;更改标记</td>
  12. </tr>
  13. <tr>
  14. <td height="200" bgcolor="#FFFFFF" valign="top">
  15. <table width="100%" border="0" cellspacing="4" cellpadding="4">
  16. <form action="mytag_edit.php" method="post" enctype="multipart/form-data" name="form1">
  17. <input type='hidden' name='aid' value='<?php echo $aid?>'>
  18. <input type='hidden' name='dopost' value='saveedit'>
  19. <input type="hidden" name="_csrf_token" value="<?php echo $GLOBALS['csrf_token'];?>" />
  20. <tr>
  21. <td width="15%" height="25" align="center">所属栏目:</td>
  22. <td colspan="2">
  23. <?php
  24. $tl = new TypeLink(0);
  25. $typeOptions = $tl->GetOptionArray($row['typeid'],0,0);
  26. echo "<select name='typeid' style='width:300'>\r\n";
  27. echo "<option value='0' selected>显示在没有继承本标记的所有栏目</option>\r\n";
  28. echo $typeOptions;
  29. echo "</select>";
  30. ?>
  31. </td>
  32. </tr>
  33. <tr>
  34. <td height="25" align="center">标记名称:</td>
  35. <td colspan="2"><?php echo $row['tagname']?></td>
  36. </tr>
  37. <tr>
  38. <td height="25" align="center">时间限制:</td>
  39. <td colspan="2"><input name="timeset" type="radio" value="0"<?php if($row['timeset']==0) echo " checked"; ?>>
  40. 永不过期
  41. <input type="radio" name="timeset" value="1" <?php if($row['timeset']==1) echo " checked"; ?>>
  42. 在设内时间内有效</td>
  43. </tr>
  44. <tr>
  45. <td height="25" align="center">开始时间:</td>
  46. <td colspan="2"><input name="starttime" type="text" id="starttime" value="<?php echo GetDateTimeMk($row['starttime'])?>"></td>
  47. </tr>
  48. <tr>
  49. <td height="25" align="center">结束时间:</td>
  50. <td colspan="2"><input name="endtime" type="text" id="endtime" value="<?php echo GetDateTimeMk($row['endtime'])?>"></td>
  51. </tr>
  52. <tr>
  53. <td height="80" align="center">正常显示内容:</td>
  54. <td width="76%">
  55. <textarea name="normbody" id="normbody" style="width:80%;height:100"><?php echo $row['normbody']?></textarea>
  56. </td>
  57. <td width="9%">&nbsp;</td>
  58. </tr>
  59. <tr>
  60. <td height="80" align="center">过期显示内容:</td>
  61. <td>
  62. <textarea name="expbody" id="expbody" style="width:80%;height:100"><?php echo $row['expbody']?></textarea>
  63. </td>
  64. <td>&nbsp;</td>
  65. </tr>
  66. <tr>
  67. <td height="53" align="center">&nbsp;</td>
  68. <td colspan="2"><input name="imageField" type="image" src="images/button_ok.gif" width="60" height="22" border="0"></td>
  69. </tr>
  70. </form>
  71. </table>
  72. </td>
  73. </tr>
  74. </table>
  75. </body>
  76. </html>