ListPltemp.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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 AddPlTemp($add,$userid,$username){
  23. global $empire,$dbtbpre,$public_r;
  24. if(!$add[tempname]||!$add[temptext])
  25. {
  26. printerror("EmptyPltempName","history.go(-1)");
  27. }
  28. //验证权限
  29. CheckLevel($userid,$username,$classid,"template");
  30. $add[tempname]=hRepPostStr($add[tempname],1);
  31. $add[temptext]=RepPhpAspJspcode($add[temptext]);
  32. $gid=(int)$add['gid'];
  33. $sql=$empire->query("insert into ".GetDoTemptb("enewspltemp",$gid)."(tempname,temptext,isdefault) values('".$add[tempname]."','".eaddslashes2($add[temptext])."',0);");
  34. $tempid=$empire->lastid();
  35. //备份模板
  36. AddEBakTemp('pltemp',$gid,$tempid,$add[tempname],$add[temptext],0,0,'',0,0,'',0,0,0,$userid,$username);
  37. //更新页面
  38. if($gid==$public_r['deftempid']||(!$public_r['deftempid']&&($gid==1||$gid==0)))
  39. {
  40. GetPlTempPage($tempid);
  41. }
  42. if($sql)
  43. {
  44. //操作日志
  45. insert_dolog("tempid=$tempid&tempname=$add[tempname]&gid=$gid");
  46. printerror("AddPltempSuccess","AddPltemp.php?enews=AddPlTemp&gid=$gid".hReturnEcmsHashStrHref2(0));
  47. }
  48. else
  49. {
  50. printerror("DbError","history.go(-1)");
  51. }
  52. }
  53. //修改评论模板
  54. function EditPlTemp($add,$userid,$username){
  55. global $empire,$dbtbpre,$public_r;
  56. $tempid=(int)$add[tempid];
  57. if(!$tempid||!$add[tempname]||!$add[temptext])
  58. {
  59. printerror("EmptyPltempName","history.go(-1)");
  60. }
  61. //验证权限
  62. CheckLevel($userid,$username,$classid,"template");
  63. $add[tempname]=hRepPostStr($add[tempname],1);
  64. $add[temptext]=RepPhpAspJspcode($add[temptext]);
  65. $gid=(int)$add['gid'];
  66. $sql=$empire->query("update ".GetDoTemptb("enewspltemp",$gid)." set tempname='".$add[tempname]."',temptext='".eaddslashes2($add[temptext])."' where tempid='$tempid'");
  67. //备份模板
  68. AddEBakTemp('pltemp',$gid,$tempid,$add[tempname],$add[temptext],0,0,'',0,0,'',0,0,0,$userid,$username);
  69. //更新页面
  70. if($gid==$public_r['deftempid']||(!$public_r['deftempid']&&($gid==1||$gid==0)))
  71. {
  72. GetPlTempPage($tempid);
  73. }
  74. if($sql)
  75. {
  76. //操作日志
  77. insert_dolog("tempid=$tempid&tempname=$add[tempname]&gid=$gid");
  78. printerror("EditPltempSuccess","ListPltemp.php?gid=$gid".hReturnEcmsHashStrHref2(0));
  79. }
  80. else
  81. {
  82. printerror("DbError","history.go(-1)");
  83. }
  84. }
  85. //删除评论模板
  86. function DelPlTemp($add,$userid,$username){
  87. global $empire,$dbtbpre,$public_r;
  88. $tempid=(int)$add[tempid];
  89. if(empty($tempid))
  90. {
  91. printerror("NotChangePlTempid","history.go(-1)");
  92. }
  93. //验证权限
  94. CheckLevel($userid,$username,$classid,"template");
  95. $gid=(int)$add['gid'];
  96. $r=$empire->fetch1("select tempname,isdefault from ".GetDoTemptb("enewspltemp",$gid)." where tempid=$tempid");
  97. if($r['isdefault'])
  98. {
  99. printerror("NotDelDefPlTempid","history.go(-1)");
  100. }
  101. $sql=$empire->query("delete from ".GetDoTemptb("enewspltemp",$gid)." where tempid=$tempid");
  102. if($gid==$public_r['deftempid']||(!$public_r['deftempid']&&($gid==1||$gid==0)))
  103. {
  104. DelFiletext(ECMS_PATH.'e/data/filecache/template/pl'.$tempid.'.php');
  105. }
  106. //删除备份记录
  107. DelEbakTempAll('pltemp',$gid,$tempid);
  108. if($sql)
  109. {
  110. //操作日志
  111. insert_dolog("tempid=$tempid&tempname=$r[tempname]&gid=$gid");
  112. printerror("DelPltempSuccess","ListPltemp.php?gid=$gid".hReturnEcmsHashStrHref2(0));
  113. }
  114. else
  115. {
  116. printerror("DbError","history.go(-1)");
  117. }
  118. }
  119. //设为默认评论模板
  120. function DefPlTemp($add,$userid,$username){
  121. global $empire,$dbtbpre,$public_r;
  122. $tempid=(int)$add[tempid];
  123. if(!$tempid)
  124. {
  125. printerror("NotChangePlTempid","history.go(-1)");
  126. }
  127. //操作权限
  128. CheckLevel($userid,$username,$classid,"template");
  129. $gid=(int)$add['gid'];
  130. $tr=$empire->fetch1("select tempname from ".GetDoTemptb("enewspltemp",$gid)." where tempid='$tempid'");
  131. $usql=$empire->query("update ".GetDoTemptb("enewspltemp",$gid)." set isdefault=0");
  132. $sql=$empire->query("update ".GetDoTemptb("enewspltemp",$gid)." set isdefault=1 where tempid='$tempid'");
  133. if($gid==$public_r['deftempid']||(!$public_r['deftempid']&&($gid==1||$gid==0)))
  134. {
  135. $empire->query("update {$dbtbpre}enewspl_set set defpltempid='$tempid' limit 1");
  136. GetConfig();//更新缓存
  137. }
  138. if($sql)
  139. {
  140. //操作日志
  141. insert_dolog("tempid=".$tempid."<br>tempname=".$tr[tempname]."&gid=$gid");
  142. printerror("DefPltempSuccess","ListPltemp.php?gid=$gid".hReturnEcmsHashStrHref2(0));
  143. }
  144. else
  145. {
  146. printerror("DbError","history.go(-1)");
  147. }
  148. }
  149. //操作
  150. $enews=$_POST['enews'];
  151. if(empty($enews))
  152. {$enews=$_GET['enews'];}
  153. if($enews)
  154. {
  155. hCheckEcmsRHash();
  156. include("../../class/tempfun.php");
  157. }
  158. if($enews=="AddPlTemp")//增加评论模板
  159. {
  160. AddPlTemp($_POST,$logininid,$loginin);
  161. }
  162. elseif($enews=="EditPlTemp")//修改评论模板
  163. {
  164. EditPlTemp($_POST,$logininid,$loginin);
  165. }
  166. elseif($enews=="DelPlTemp")//删除评论模板
  167. {
  168. DelPlTemp($_GET,$logininid,$loginin);
  169. }
  170. elseif($enews=="DefPlTemp")//默认评论模板
  171. {
  172. DefPlTemp($_GET,$logininid,$loginin);
  173. }
  174. $gid=(int)$_GET['gid'];
  175. $gname=CheckTempGroup($gid);
  176. $urlgname=$gname."&nbsp;>&nbsp;";
  177. $url=$urlgname."<a href=ListPltemp.php?gid=$gid".$ecms_hashur['ehref'].">管理评论模板</a>";
  178. $search="&gid=$gid".$ecms_hashur['ehref'];
  179. $page=(int)$_GET['page'];
  180. $page=RepPIntvar($page);
  181. $start=0;
  182. $line=25;//每页显示条数
  183. $page_line=12;//每页显示链接数
  184. $offset=$page*$line;//总偏移量
  185. $query="select tempid,tempname,isdefault from ".GetDoTemptb("enewspltemp",$gid);
  186. $totalquery="select count(*) as total from ".GetDoTemptb("enewspltemp",$gid);
  187. $num=$empire->gettotal($totalquery);//取得总条数
  188. $query=$query." order by tempid desc limit $offset,$line";
  189. $sql=$empire->query($query);
  190. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  191. ?>
  192. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  193. <html>
  194. <head>
  195. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  196. <title>管理评论模板</title>
  197. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  198. </head>
  199. <body>
  200. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  201. <tr>
  202. <td width="50%">位置:
  203. <?=$url?>
  204. </td>
  205. <td><div align="right" class="emenubutton">
  206. <input type="button" name="Submit5" value="增加评论模板" onclick="self.location.href='AddPltemp.php?enews=AddPlTemp&gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  207. </div></td>
  208. </tr>
  209. </table>
  210. <br>
  211. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  212. <tr class="header">
  213. <td width="10%" height="25"><div align="center">ID</div></td>
  214. <td width="61%" height="25"><div align="center">模板名</div></td>
  215. <td width="29%" height="25"><div align="center">操作</div></td>
  216. </tr>
  217. <?
  218. while($r=$empire->fetch($sql))
  219. {
  220. $color="#ffffff";
  221. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  222. if($r[isdefault])
  223. {
  224. $color="#DBEAF5";
  225. $movejs='';
  226. }
  227. ?>
  228. <tr bgcolor="<?=$color?>"<?=$movejs?>>
  229. <td height="25"><div align="center">
  230. <a href="EditTempid.php?tempno=10&tempid=<?=$r['tempid']?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>" target="_blank" title="修改模板ID"><?=$r[tempid]?></a>
  231. </div></td>
  232. <td height="25"><div align="center">
  233. <?=$r[tempname]?>
  234. </div></td>
  235. <td height="25"><div align="center"> [<a href="AddPltemp.php?enews=EditPlTemp&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">修改</a>]
  236. [<a href="AddPltemp.php?enews=AddPlTemp&docopy=1&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">复制</a>]
  237. [<a href="ListPltemp.php?enews=DefPlTemp&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要默认?');">设为默认</a>]
  238. [<a href="ListPltemp.php?enews=DelPlTemp&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  239. </tr>
  240. <?
  241. }
  242. ?>
  243. <tr bgcolor="ffffff">
  244. <td height="25" colspan="3">&nbsp;
  245. <?=$returnpage?>
  246. </td>
  247. </tr>
  248. </table>
  249. </body>
  250. </html>
  251. <?
  252. db_close();
  253. $empire=null;
  254. ?>