SearchKey.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../class/connect.php");
  4. require("../class/db_sql.php");
  5. require("../class/functions.php");
  6. require LoadLang("pub/fun.php");
  7. require("../data/dbcache/class.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"searchkey");
  21. //删除搜索关键字
  22. function DelSearchKey($onclick,$userid,$username){
  23. global $empire,$dbtbpre;
  24. //验证权限
  25. CheckLevel($userid,$username,$classid,"searchkey");
  26. $onclick=(int)$onclick;
  27. if(empty($onclick))
  28. {
  29. printerror("EmptySearchOnclick","history.go(-1)");
  30. }
  31. $sql=$empire->query("delete from {$dbtbpre}enewssearch where onclick<".$onclick.";");
  32. if($sql)
  33. {
  34. //操作日志
  35. insert_dolog("onclick=".$onclick);
  36. printerror("DelSearchKeySuccess","SearchKey.php".hReturnEcmsHashStrHref2(1));
  37. }
  38. else
  39. {
  40. printerror("DbError","history.go(-1)");
  41. }
  42. }
  43. //删除搜索关键字
  44. function DelSearchKey_all($add,$userid,$username){
  45. global $empire,$dbtbpre;
  46. //验证权限
  47. CheckLevel($userid,$username,$classid,"searchkey");
  48. $searchid=$add['searchid'];
  49. $count=count($searchid);
  50. if(empty($count))
  51. {
  52. printerror("EmptySearchId","history.go(-1)");
  53. }
  54. $ids='';
  55. for($i=0;$i<$count;$i++)
  56. {
  57. $dh=',';
  58. if($i==0)
  59. {
  60. $dh='';
  61. }
  62. $ids.=$dh.intval($searchid[$i]);
  63. }
  64. $sql=$empire->query("delete from {$dbtbpre}enewssearch where searchid in (".$ids.");");
  65. if($sql)
  66. {
  67. //操作日志
  68. insert_dolog("");
  69. printerror("DelSearchKeySuccess","SearchKey.php".hReturnEcmsHashStrHref2(1));
  70. }
  71. else
  72. {
  73. printerror("DbError","history.go(-1)");
  74. }
  75. }
  76. $enews=$_POST['enews'];
  77. if(empty($enews))
  78. {$enews=$_GET['enews'];}
  79. if($enews)
  80. {
  81. hCheckEcmsRHash();
  82. }
  83. //删除搜索关键字
  84. if($enews=="DelSearchKey")
  85. {
  86. $onclick=$_POST['onclick'];
  87. DelSearchKey($onclick,$logininid,$loginin);
  88. }
  89. if($enews=="DelSearchKey_all")
  90. {
  91. DelSearchKey_all($_POST,$logininid,$loginin);
  92. }
  93. $page=(int)$_GET['page'];
  94. $page=RepPIntvar($page);
  95. $start=0;
  96. $line=25;//每页显示条数
  97. $page_line=18;//每页显示链接数
  98. $offset=$page*$line;//总偏移量
  99. $query="select * from {$dbtbpre}enewssearch";
  100. $totalquery="select count(*) as total from {$dbtbpre}enewssearch";
  101. $classid=ehtmlspecialchars($_GET['classid']);
  102. $bclassid=0;
  103. if($classid!='all'&&strlen($classid)!=0)
  104. {
  105. $bclassid=$classid;
  106. $query.=" where trueclassid='".intval($classid)."'";
  107. $totalquery.=" where trueclassid='".intval($classid)."'";
  108. }
  109. $search="&classid=".$classid.$ecms_hashur['ehref'];
  110. //取得总条数
  111. $num=$empire->gettotal($totalquery);
  112. $query.=" order by onclick desc limit $offset,$line";
  113. $sql=$empire->query($query);
  114. //类别
  115. $fcfile="../data/fc/ListEnews.php";
  116. $class="<script src=../data/fc/cmsclass.js></script>";
  117. if(!file_exists($fcfile))
  118. {$class=ShowClass_AddClass("",$bclassid,0,"|-",0,0);}
  119. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  120. ?>
  121. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  122. <html>
  123. <head>
  124. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  125. <title>搜索关键字排行</title>
  126. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  127. <script>
  128. function CheckAll(form)
  129. {
  130. for (var i=0;i<form.elements.length;i++)
  131. {
  132. var e = form.elements[i];
  133. if (e.name != 'chkall')
  134. e.checked = form.chkall.checked;
  135. }
  136. }
  137. </script>
  138. </head>
  139. <body>
  140. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  141. <tr>
  142. <td height="25">位置:<a href="SearchKey.php<?=$ecms_hashur['whehref']?>">搜索关键字排行</a></td>
  143. </tr>
  144. </table>
  145. <br>
  146. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  147. <form name="form1" method="post" action="SearchKey.php" onsubmit="return confirm('确定要删除?');">
  148. <?=$ecms_hashur['form']?>
  149. <tr class="header">
  150. <td height="25">删除搜索关键字记录</td>
  151. </tr>
  152. <tr>
  153. <td height="25" bgcolor="#FFFFFF">删除搜索次 <strong><font color="#FF0000">&lt;</font></strong>
  154. <input name="onclick" type="text" id="onclick" value="0" size="8">
  155. 的记录
  156. <input type="submit" name="Submit" value="删除">
  157. <input name="enews" type="hidden" id="enews" value="DelSearchKey"></td>
  158. </tr>
  159. </form>
  160. </table>
  161. <br>
  162. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  163. <form name="searchkeyform" method="post" action="SearchKey.php" onsubmit="return confirm('确定要删除?');">
  164. <?=$ecms_hashur['form']?>
  165. <input type=hidden name=enews value=DelSearchKey_all>
  166. <tr class="header">
  167. <td height="25" colspan="6">显示范围:
  168. <select name="classid" id="classid" onchange=window.location='SearchKey.php?<?=$ecms_hashur['ehref']?>&classid='+this.options[this.selectedIndex].value>
  169. <option value="all">全部关键字</option>
  170. <option value="0">不限栏目的搜索</option>
  171. <?=$class?>
  172. </select></td>
  173. </tr>
  174. <tr>
  175. <td width="6%"><div align="center"></div></td>
  176. <td width="10%" height="25"><div align="center">ID</div></td>
  177. <td width="30%" height="25"><div align="center">关键字</div></td>
  178. <td width="18%" height="25"><div align="center">搜索栏目</div></td>
  179. <td width="27%" height="25"><div align="center">搜索字段</div></td>
  180. <td width="9%"><div align="center">人气</div></td>
  181. </tr>
  182. <?
  183. while($r=$empire->fetch($sql))
  184. {
  185. if($r['iskey'])
  186. {
  187. $r[keyboard]='[多条件搜索]';
  188. }
  189. ?>
  190. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  191. <td><div align="center">
  192. <input name="searchid[]" type="checkbox" id="searchid[]" value="<?=$r[searchid]?>">
  193. </div></td>
  194. <td height="25"> <div align="center">
  195. <?=$r[searchid]?>
  196. </div></td>
  197. <td height="25"> <div align="center"><a href='../search/result?searchid=<?=$r[searchid]?>' title="LastTime: <?=date("Y-m-d H:i:s",$r[searchtime])?>" target=_blank>
  198. <?=$r[keyboard]?>
  199. </a></div></td>
  200. <td height="25"> <div align="center"><a href="SearchKey.php?<?=$ecms_hashur['ehref']?>&classid=<?=$r[classid]?>">
  201. <?=$r[classid]?>
  202. </a></div></td>
  203. <td height="25"> <div align="center">
  204. <?=$r[searchclass]?>
  205. </div></td>
  206. <td> <div align="center">
  207. <?=$r[onclick]?>
  208. </div></td>
  209. </tr>
  210. <?
  211. }
  212. ?>
  213. <tr bgcolor="#FFFFFF">
  214. <td height="25"> <div align="center">
  215. <input type=checkbox name=chkall value=on onclick="CheckAll(this.form)">
  216. </div></td>
  217. <td height="25" colspan="5">
  218. <?=$returnpage?>
  219. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  220. <input type="submit" name="Submit2" value="删除"> </td>
  221. </tr>
  222. </form>
  223. </table>
  224. </body>
  225. </html>
  226. <?
  227. db_close();
  228. $empire=null;
  229. ?>