ListSearchtemp.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  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. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  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,"template");
  21. //增加搜索模板
  22. function AddMSearchtemp($add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(!$add[tempname]||!$add[temptext]||!$add[listvar]||!$add[modid])
  25. {printerror("EmptySearchTempname","history.go(-1)");}
  26. //操作权限
  27. CheckLevel($userid,$username,$classid,"template");
  28. $classid=(int)$add['classid'];
  29. $add[tempname]=hRepPostStr($add[tempname],1);
  30. $add[temptext]=RepPhpAspJspcode($add[temptext]);
  31. $add[listvar]=RepPhpAspJspcode($add[listvar]);
  32. if($add['autorownum'])
  33. {
  34. $add[rownum]=substr_count($add[temptext],'<!--list.var');
  35. }
  36. //变量处理
  37. $add[subnews]=(int)$add[subnews];
  38. $add[rownum]=(int)$add[rownum];
  39. $add[modid]=(int)$add[modid];
  40. $add[subtitle]=(int)$add[subtitle];
  41. $docode=(int)$add[docode];
  42. $gid=(int)$add['gid'];
  43. $sql=$empire->query("insert into ".GetDoTemptb("enewssearchtemp",$gid)."(tempname,temptext,subnews,isdefault,listvar,rownum,modid,showdate,subtitle,classid,docode) values('$add[tempname]','".eaddslashes2($add[temptext])."',$add[subnews],0,'".eaddslashes2($add[listvar])."',$add[rownum],$add[modid],'".eaddslashes($add[showdate])."',$add[subtitle],$classid,'$docode');");
  44. $tempid=$empire->lastid();
  45. //备份模板
  46. AddEBakTemp('searchtemp',$gid,$tempid,$add[tempname],$add[temptext],$add[subnews],0,$add[listvar],$add[rownum],$add[modid],$add[showdate],$add[subtitle],$classid,$docode,$userid,$username);
  47. if($sql)
  48. {
  49. //操作日志
  50. insert_dolog("tempid=".$tempid."<br>tempname=".$add[tempname]."&gid=$gid");
  51. printerror("AddMSearchTempSuccess","AddSearchtemp.php?enews=AddMSearchtemp&gid=$gid".hReturnEcmsHashStrHref2(0));
  52. }
  53. else
  54. {
  55. printerror("DbError","history.go(-1)");
  56. }
  57. }
  58. //修改搜索模板
  59. function EditMSearchtemp($add,$userid,$username){
  60. global $empire,$dbtbpre;
  61. $add[tempid]=(int)$add[tempid];
  62. if(!$add[tempname]||!$add[temptext]||!$add[listvar]||!$add[modid]||!$add[tempid])
  63. {printerror("EmptySearchTempname","history.go(-1)");}
  64. //操作权限
  65. CheckLevel($userid,$username,$classid,"template");
  66. $classid=(int)$add['classid'];
  67. $add[tempname]=hRepPostStr($add[tempname],1);
  68. $add[temptext]=RepPhpAspJspcode($add[temptext]);
  69. $add[listvar]=RepPhpAspJspcode($add[listvar]);
  70. if($add['autorownum'])
  71. {
  72. $add[rownum]=substr_count($add[temptext],'<!--list.var');
  73. }
  74. //变量处理
  75. $add[subnews]=(int)$add[subnews];
  76. $add[rownum]=(int)$add[rownum];
  77. $add[modid]=(int)$add[modid];
  78. $add[subtitle]=(int)$add[subtitle];
  79. $docode=(int)$add[docode];
  80. $gid=(int)$add['gid'];
  81. $sql=$empire->query("update ".GetDoTemptb("enewssearchtemp",$gid)." set subnews=$add[subnews],tempname='$add[tempname]',temptext='".eaddslashes2($add[temptext])."',listvar='".eaddslashes2($add[listvar])."',rownum=$add[rownum],modid=$add[modid],showdate='".eaddslashes($add[showdate])."',subtitle=$add[subtitle],classid=$classid,docode='$docode' where tempid='$add[tempid]'");
  82. //备份模板
  83. AddEBakTemp('searchtemp',$gid,$add[tempid],$add[tempname],$add[temptext],$add[subnews],0,$add[listvar],$add[rownum],$add[modid],$add[showdate],$add[subtitle],$classid,$docode,$userid,$username);
  84. if($sql)
  85. {
  86. //操作日志
  87. insert_dolog("tempid=".$add[tempid]."<br>tempname=".$add[tempname]."&gid=$gid");
  88. printerror("EditMSearchTempSuccess","ListSearchtemp.php?classid=$add[cid]&modid=$add[mid]&gid=$gid".hReturnEcmsHashStrHref2(0));
  89. }
  90. else
  91. {
  92. printerror("DbError","history.go(-1)");
  93. }
  94. }
  95. //删除搜索模板
  96. function DelMSearchtemp($tempid,$add,$userid,$username){
  97. global $empire,$dbtbpre;
  98. $tempid=(int)$tempid;
  99. if(!$tempid)
  100. {printerror("NotDelTemplateid","history.go(-1)");}
  101. //操作权限
  102. CheckLevel($userid,$username,$classid,"template");
  103. $gid=(int)$add['gid'];
  104. $tr=$empire->fetch1("select tempname,isdefault from ".GetDoTemptb("enewssearchtemp",$gid)." where tempid='$tempid'");
  105. if($tr[isdefault])
  106. {printerror("NotDelDefaultTemp","history.go(-1)");}
  107. $sql=$empire->query("delete from ".GetDoTemptb("enewssearchtemp",$gid)." where tempid='$tempid'");
  108. $usql=$empire->query("update {$dbtbpre}enewsclass set searchtempid=0 where searchtempid='$tempid'");
  109. GetClass();
  110. //删除备份记录
  111. DelEbakTempAll('searchtemp',$gid,$tempid);
  112. if($sql)
  113. {
  114. //操作日志
  115. insert_dolog("tempid=".$tempid."<br>tempname=".$tr[tempname]."&gid=$gid");
  116. printerror("DelMSearchTempSuccess","ListSearchtemp.php?classid=$add[cid]&modid=$add[mid]&gid=$gid".hReturnEcmsHashStrHref2(0));
  117. }
  118. else
  119. {
  120. printerror("DbError","history.go(-1)");
  121. }
  122. }
  123. //设为默认搜索模板
  124. function DefaultMSearchtemp($tempid,$add,$userid,$username){
  125. global $empire,$dbtbpre;
  126. $tempid=(int)$tempid;
  127. if(!$tempid)
  128. {printerror("EmptyDefaultSearchtempid","history.go(-1)");}
  129. //操作权限
  130. CheckLevel($userid,$username,$classid,"template");
  131. $gid=(int)$add['gid'];
  132. $tr=$empire->fetch1("select tempname from ".GetDoTemptb("enewssearchtemp",$gid)." where tempid='$tempid'");
  133. $usql=$empire->query("update ".GetDoTemptb("enewssearchtemp",$gid)." set isdefault=0");
  134. $sql=$empire->query("update ".GetDoTemptb("enewssearchtemp",$gid)." set isdefault=1 where tempid='$tempid'");
  135. if($sql)
  136. {
  137. //操作日志
  138. insert_dolog("tempid=".$tempid."<br>tempname=".$tr[tempname]."&gid=$gid");
  139. printerror("DefaultMSearchtempSuccess","ListSearchtemp.php?classid=$add[cid]&modid=$add[mid]&gid=$gid".hReturnEcmsHashStrHref2(0));
  140. }
  141. else
  142. {
  143. printerror("DbError","history.go(-1)");
  144. }
  145. }
  146. $enews=$_POST['enews'];
  147. if(empty($enews))
  148. {$enews=$_GET['enews'];}
  149. if($enews)
  150. {
  151. hCheckEcmsRHash();
  152. include("../../class/tempfun.php");
  153. }
  154. //增加搜索模板
  155. if($enews=="AddMSearchtemp")
  156. {
  157. AddMSearchtemp($_POST,$logininid,$loginin);
  158. }
  159. //修改搜索模板
  160. elseif($enews=="EditMSearchtemp")
  161. {
  162. EditMSearchtemp($_POST,$logininid,$loginin);
  163. }
  164. //删除搜索模板
  165. elseif($enews=="DelMSearchtemp")
  166. {
  167. $tempid=$_GET['tempid'];
  168. DelMSearchtemp($tempid,$_GET,$logininid,$loginin);
  169. }
  170. //默认搜索模板
  171. elseif($enews=="DefaultMSearchtemp")
  172. {
  173. $tempid=$_GET['tempid'];
  174. DefaultMSearchtemp($tempid,$_GET,$logininid,$loginin);
  175. }
  176. $gid=(int)$_GET['gid'];
  177. $gname=CheckTempGroup($gid);
  178. $urlgname=$gname."&nbsp;>&nbsp;";
  179. $url=$urlgname."<a href=ListSearchtemp.php?gid=$gid".$ecms_hashur['ehref'].">管理搜索模板</a>";
  180. $search="&gid=$gid".$ecms_hashur['ehref'];
  181. $page=(int)$_GET['page'];
  182. $page=RepPIntvar($page);
  183. $start=0;
  184. $line=25;//每页显示条数
  185. $page_line=12;//每页显示链接数
  186. $offset=$page*$line;//总偏移量
  187. $query="select tempid,tempname,modid,isdefault from ".GetDoTemptb("enewssearchtemp",$gid);
  188. $totalquery="select count(*) as total from ".GetDoTemptb("enewssearchtemp",$gid);
  189. //类别
  190. $add="";
  191. $classid=(int)$_GET['classid'];
  192. if($classid)
  193. {
  194. $add=" where classid=$classid";
  195. $search.="&classid=$classid";
  196. }
  197. //模型
  198. $modid=(int)$_GET['modid'];
  199. if($modid)
  200. {
  201. if(empty($add))
  202. {
  203. $add=" where modid=$modid";
  204. }
  205. else
  206. {
  207. $add.=" and modid=$modid";
  208. }
  209. $search.="&modid=$modid";
  210. }
  211. $query.=$add;
  212. $totalquery.=$add;
  213. $num=$empire->gettotal($totalquery);//取得总条数
  214. $query=$query." order by tempid desc limit $offset,$line";
  215. $sql=$empire->query($query);
  216. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  217. //分类
  218. $cstr="";
  219. $csql=$empire->query("select classid,classname from {$dbtbpre}enewssearchtempclass order by classid");
  220. while($cr=$empire->fetch($csql))
  221. {
  222. $select="";
  223. if($cr[classid]==$classid)
  224. {
  225. $select=" selected";
  226. }
  227. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  228. }
  229. //模型
  230. $mstr="";
  231. $msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod where usemod=0 order by myorder,mid");
  232. while($mr=$empire->fetch($msql))
  233. {
  234. $select="";
  235. if($mr[mid]==$modid)
  236. {
  237. $select=" selected";
  238. }
  239. $mstr.="<option value='".$mr[mid]."'".$select.">".$mr[mname]."</option>";
  240. }
  241. ?>
  242. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  243. <html>
  244. <head>
  245. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  246. <title>管理搜索模板</title>
  247. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  248. </head>
  249. <body>
  250. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  251. <tr>
  252. <td width="50%">位置:
  253. <?=$url?>
  254. </td>
  255. <td> <div align="right" class="emenubutton">
  256. <input type="button" name="Submit5" value="增加搜索模板" onclick="self.location.href='AddSearchtemp.php?enews=AddMSearchtemp&gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  257. &nbsp;&nbsp;
  258. <input type="button" name="Submit5" value="管理搜索模板分类" onclick="self.location.href='SearchtempClass.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  259. </div></td>
  260. </tr>
  261. </table>
  262. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  263. <form name="form1" method="get" action="ListSearchtemp.php">
  264. <?=$ecms_hashur['eform']?>
  265. <input type=hidden name=gid value="<?=$gid?>">
  266. <tr>
  267. <td height="25">限制显示:
  268. <select name="classid" id="classid" onchange="document.form1.submit()">
  269. <option value="0">显示所有分类</option>
  270. <?=$cstr?>
  271. </select>
  272. <select name="modid" id="modid" onchange="document.form1.submit()">
  273. <option value="0">显示所有系统模型</option>
  274. <?=$mstr?>
  275. </select>
  276. </td>
  277. </tr>
  278. </form>
  279. </table>
  280. <br>
  281. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  282. <tr class="header">
  283. <td width="8%" height="25"><div align="center">ID</div></td>
  284. <td width="41%" height="25"><div align="center">模板名</div></td>
  285. <td width="27%"><div align="center">所属系统模型</div></td>
  286. <td width="24%" height="25"><div align="center">操作</div></td>
  287. </tr>
  288. <?
  289. while($r=$empire->fetch($sql))
  290. {
  291. $modr=$empire->fetch1("select mid,mname from {$dbtbpre}enewsmod where mid=$r[modid]");
  292. $color="#ffffff";
  293. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  294. if($r[isdefault])
  295. {
  296. $color="#DBEAF5";
  297. $movejs='';
  298. }
  299. ?>
  300. <tr bgcolor="<?=$color?>"<?=$movejs?>>
  301. <td height="25"><div align="center">
  302. <a href="EditTempid.php?tempno=6&tempid=<?=$r['tempid']?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>" target="_blank" title="修改模板ID"><?=$r[tempid]?></a>
  303. </div></td>
  304. <td height="25"><div align="center">
  305. <?=$r[tempname]?>
  306. </div></td>
  307. <td><div align="center">[<a href="ListSearchtemp.php?classid=<?=$classid?>&modid=<?=$modr[mid]?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>"><?=$modr[mname]?></a>]</div></td>
  308. <td height="25"><div align="center"> [<a href="AddSearchtemp.php?enews=EditMSearchtemp&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">修改</a>]
  309. [<a href="AddSearchtemp.php?enews=AddMSearchtemp&docopy=1&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">复制</a>]
  310. [<a href="ListSearchtemp.php?enews=DefaultMSearchtemp&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要设为默认?');">设为默认</a>]
  311. [<a href="ListSearchtemp.php?enews=DelMSearchtemp&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  312. </tr>
  313. <?
  314. }
  315. ?>
  316. <tr bgcolor="ffffff">
  317. <td height="25" colspan="4">&nbsp;<?=$returnpage?></td>
  318. </tr>
  319. </table>
  320. </body>
  321. </html>
  322. <?
  323. db_close();
  324. $empire=null;
  325. ?>