SetSearchAll.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"searchall");
  20. $r=$empire->fetch1("select openschall,schallfield,schallminlen,schallmaxlen,schallnotcid,schallnum,schallpagenum,schalltime from {$dbtbpre}enewspublic limit 1");
  21. $schallnotcid=substr($r[schallnotcid],1,strlen($r[schallnotcid])-2);
  22. db_close();
  23. $empire=null;
  24. ?>
  25. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  26. <html>
  27. <head>
  28. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  29. <title>全站搜索设置</title>
  30. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  31. </head>
  32. <body>
  33. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  34. <tr>
  35. <td>位置:<a href="ListSearchLoadTb.php<?=$ecms_hashur['whehref']?>">管理全站搜索数据源</a>&nbsp;->&nbsp;全站搜索设置
  36. </td>
  37. </tr>
  38. </table>
  39. <form name="searchset" method="post" action="ListSearchLoadTb.php">
  40. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  41. <?=$ecms_hashur['form']?>
  42. <tr class="header">
  43. <td height="25" colspan="2">全站搜索设置
  44. <input name=enews type=hidden value=SetSearchAll></td>
  45. </tr>
  46. <tr bgcolor="#FFFFFF">
  47. <td height="25">开启搜索</td>
  48. <td height="25"><input type="radio" name="openschall" value="1"<?=$r[openschall]==1?' checked':''?>>
  49. <input type="radio" name="openschall" value="0"<?=$r[openschall]==0?' checked':''?>>
  50. 否 </td>
  51. </tr>
  52. <tr bgcolor="#FFFFFF">
  53. <td width="19%" height="25">搜索范围:</td>
  54. <td width="81%" height="25"><select name="schallfield" id="schallfield">
  55. <option value="1"<?=$r[schallfield]==1?' selected':''?>>搜索标题和全文</option>
  56. <option value="2"<?=$r[schallfield]==2?' selected':''?>>搜索标题</option>
  57. <option value="3"<?=$r[schallfield]==3?' selected':''?>>搜索全文</option>
  58. </select> </td>
  59. </tr>
  60. <tr bgcolor="#FFFFFF">
  61. <td height="25">搜索关键字长度:</td>
  62. <td height="25">在
  63. <input name="schallminlen" type="text" id="schallminlen" value="<?=$r[schallminlen]?>" size="6">
  64. 个字符与
  65. <input name="schallmaxlen" type="text" id="schallmaxlen" value="<?=$r[schallmaxlen]?>" size="6">
  66. 个字符之间 </td>
  67. </tr>
  68. <tr bgcolor="#FFFFFF">
  69. <td height="25">搜索时间间隔:</td>
  70. <td height="25">在
  71. <input name="schalltime" type="text" id="schalltime" value="<?=$r[schalltime]?>" size="6">
  72. 秒</td>
  73. </tr>
  74. <tr bgcolor="#FFFFFF">
  75. <td height="25">页面显示:</td>
  76. <td height="25">每页
  77. <input name="schallnum" type="text" id="schallnum" value="<?=$r[schallnum]?>" size="6">
  78. 显示条记录,
  79. <input name="schallpagenum" type="text" id="schallpagenum" value="<?=$r[schallpagenum]?>" size="6">
  80. 个分页链接<font color="#666666">&nbsp;</font></td>
  81. </tr>
  82. <tr bgcolor="#FFFFFF">
  83. <td height="25">不导入搜索表的终极栏目:</td>
  84. <td height="25"><input name="schallnotcid" type="text" id="schallnotcid" value="<?=$schallnotcid?>">
  85. <font color="#666666">(格式:栏目ID1,栏目ID2...多个用&quot;,&quot;格开)</font> </td>
  86. </tr>
  87. <tr bgcolor="#FFFFFF">
  88. <td height="25">&nbsp;</td>
  89. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  90. </tr>
  91. <tr bgcolor="#FFFFFF">
  92. <td height="25">&nbsp;</td>
  93. <td height="25">全站搜索测试地址:<a href="<?=$public_r[newsurl].'e/sch/sch.html'?>" target="_blank">
  94. <?=$public_r[newsurl].'e/sch/sch.html'?>
  95. </a></td>
  96. </tr>
  97. </table>
  98. </form>
  99. </body>
  100. </html>