ListClasstemp.php 8.2 KB

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