ListJstemp.php 9.4 KB

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