ListPrinttemp.php 8.7 KB

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