badwords.tpl.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php include mymps_tpl('inc_head');?>
  2. <div id="<?=MPS_SOFTNAME?>" style="padding-bottom:0">
  3. <div class="mpstopic-category">
  4. <div class="panel-tab">
  5. <ul class="clearfix tab-list">
  6. <li><a href="config.php?part=imgcode" <?php if($part == 'imgcode'){?>class="current"<?php }?>>验证码控制</a></li>
  7. <li><a href="config.php?part=checkask" <?php if($part == 'checkask'){?>class="current"<?php }?>>验证问答设置</a></li>
  8. <li><a href="config.php?part=badwords" <?php if($part == 'badwords'){?>class="current"<?php }?>>过滤设置</a></li>
  9. <li><a href="config.php?part=commentsettings" <?php if($part == 'commentsettings'){?>class="current"<?php }?>>评论点评设置</a></li>
  10. </ul>
  11. </div>
  12. </div>
  13. </div>
  14. <form action="?part=badwords" method="post" name="form1">
  15. <input name="action" value="dopost" type="hidden"/>
  16. <div id="<?=MPS_SOFTNAME?>">
  17. <table border="0" cellspacing="0" cellpadding="0" class="vbm">
  18. <tr class="firstr">
  19. <td colspan="5">
  20. <a name="#禁止词语过滤设置"></a>
  21. <div class="left">
  22. <a href="javascript:collapse_change('10')">脏话,禁止词语过滤设置</a></div>
  23. <div class="right"><a href="javascript:collapse_change('10')"><img id="menuimg_10" src="template/images/menu_reduce.gif"/></a></div>
  24. </td>
  25. </tr>
  26. <tbody id="menu_10" style="display:">
  27. <tr bgcolor="#f5fbff" >
  28. <td style="width:100px; line-height:22px">
  29. 信息中禁止出现的词语,用","分开 </td>
  30. <td colspan="2">
  31. <textarea name="cfg_badwords0" style=" width:350px; height:120px"><?=$filter[words]?></textarea>
  32. </td>
  33. </tr>
  34. <tr bgcolor="#f5fbff" >
  35. <td style="width:100px; line-height:22px">
  36. 禁止词语的替代词语
  37. </td>
  38. <td colspan="2">
  39. <input name="cfg_badwords1" value="<?=$filter[view]?>" class="text" type="text"/>
  40. </td>
  41. </tr>
  42. <tr bgcolor="#f5fbff" >
  43. <td style="width:35%; line-height:22px">
  44. 当出现违禁词语时,是否自动转为待审核状态<br />(包括分类信息、分类信息评论、网站留言等等)<br />
  45. <i style="color:red">注意:该设置在您关闭了信息审核和评论审核的功能下生效 </i> </td>
  46. <td colspan="2">
  47. <select name="cfg_badwords2" />
  48. <option value="1" <?php if($filter[ifcheck] == 1){?>style='background-color:#6EB00C;color:white' selected<?}?>>是/开启</option>
  49. <option value="0" <?php if($filter[ifcheck] == 0){?>style='background-color:#6EB00C;color:white' selected<?}?>>否/关闭</option>
  50. </select>
  51. </td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. </div>
  56. <center>
  57. <input class="mymps large" value="提 交" type="submit" >
  58. </center>
  59. </form>
  60. <?php mymps_admin_tpl_global_foot();?>