ListListtemp.php 10 KB

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