ListIndexpage.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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 AddIndexpage($add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(!$add[tempname]||!$add[temptext])
  25. {
  26. printerror("EmptyIndexpageName","history.go(-1)");
  27. }
  28. //验证权限
  29. CheckLevel($userid,$username,$classid,"template");
  30. $gid=(int)$add['gid'];
  31. $add[tempname]=hRepPostStr($add[tempname],1);
  32. $add[temptext]=RepPhpAspJspcode($add[temptext]);
  33. $sql=$empire->query("insert into {$dbtbpre}enewsindexpage(tempname,temptext) values('".$add[tempname]."','".eaddslashes2($add[temptext])."');");
  34. $tempid=$empire->lastid();
  35. //备份模板
  36. AddEBakTemp('indexpage',1,$tempid,$add[tempname],$add[temptext],0,0,'',0,0,'',0,0,0,$userid,$username);
  37. if($sql)
  38. {
  39. //操作日志
  40. insert_dolog("tempid=$tempid&tempname=$add[tempname]");
  41. printerror("AddIndexpageSuccess","AddIndexpage.php?enews=AddIndexpage&gid=$gid".hReturnEcmsHashStrHref2(0));
  42. }
  43. else
  44. {
  45. printerror("DbError","history.go(-1)");
  46. }
  47. }
  48. //修改首页方案
  49. function EditIndexpage($add,$userid,$username){
  50. global $empire,$dbtbpre,$public_r;
  51. $tempid=(int)$add[tempid];
  52. if(!$tempid||!$add[tempname]||!$add[temptext])
  53. {
  54. printerror("EmptyIndexpageName","history.go(-1)");
  55. }
  56. //验证权限
  57. CheckLevel($userid,$username,$classid,"template");
  58. $gid=(int)$add['gid'];
  59. $add[tempname]=hRepPostStr($add[tempname],1);
  60. $add[temptext]=RepPhpAspJspcode($add[temptext]);
  61. $sql=$empire->query("update {$dbtbpre}enewsindexpage set tempname='".$add[tempname]."',temptext='".eaddslashes2($add[temptext])."' where tempid='$tempid'");
  62. //备份模板
  63. AddEBakTemp('indexpage',1,$tempid,$add[tempname],$add[temptext],0,0,'',0,0,'',0,0,0,$userid,$username);
  64. //刷新首页
  65. if($tempid==$public_r['indexpageid'])
  66. {
  67. NewsBq($classid,eaddslashes($add[temptext]),1,0);
  68. //删除动态模板缓存文件
  69. DelOneTempTmpfile('indexpage');
  70. }
  71. if($sql)
  72. {
  73. //操作日志
  74. insert_dolog("tempid=$tempid&tempname=$add[tempname]");
  75. printerror("EditIndexpageSuccess","ListIndexpage.php?gid=$gid".hReturnEcmsHashStrHref2(0));
  76. }
  77. else
  78. {
  79. printerror("DbError","history.go(-1)");
  80. }
  81. }
  82. //删除首页方案
  83. function DelIndexpage($tempid,$userid,$username){
  84. global $empire,$dbtbpre,$public_r;
  85. $tempid=(int)$tempid;
  86. if(empty($tempid))
  87. {
  88. printerror("NotChangeIndexpageid","history.go(-1)");
  89. }
  90. //验证权限
  91. CheckLevel($userid,$username,$classid,"template");
  92. $gid=(int)$_GET['gid'];
  93. $r=$empire->fetch1("select tempname from {$dbtbpre}enewsindexpage where tempid='$tempid'");
  94. $sql=$empire->query("delete from {$dbtbpre}enewsindexpage where tempid='$tempid'");
  95. if($tempid==$public_r['indexpageid'])
  96. {
  97. $empire->query("update {$dbtbpre}enewspublic set indexpageid=0");
  98. GetConfig();//更新缓存
  99. }
  100. //删除备份记录
  101. DelEbakTempAll('indexpage',1,$tempid);
  102. //刷新首页
  103. if($tempid==$public_r['indexpageid'])
  104. {
  105. $indextempr=$empire->fetch1("select indextemp from ".GetTemptb("enewspubtemp")." limit 1");
  106. $indextemp=$indextempr['indextemp'];
  107. NewsBq($classid,$indextemp,1,0);
  108. //删除动态模板缓存文件
  109. DelOneTempTmpfile('indexpage');
  110. }
  111. if($sql)
  112. {
  113. //操作日志
  114. insert_dolog("tempid=$tempid&tempname=$r[tempname]");
  115. printerror("DelIndexpageSuccess","ListIndexpage.php?gid=$gid".hReturnEcmsHashStrHref2(0));
  116. }
  117. else
  118. {
  119. printerror("DbError","history.go(-1)");
  120. }
  121. }
  122. //启用首页方案
  123. function DefIndexpage($tempid,$userid,$username){
  124. global $empire,$dbtbpre,$public_r;
  125. $tempid=(int)$tempid;
  126. if(empty($tempid))
  127. {
  128. printerror("NotChangeIndexpageid","history.go(-1)");
  129. }
  130. //验证权限
  131. CheckLevel($userid,$username,$classid,"template");
  132. $gid=(int)$_GET['gid'];
  133. $r=$empire->fetch1("select tempname,temptext from {$dbtbpre}enewsindexpage where tempid='$tempid'");
  134. if($tempid==$public_r['indexpageid'])
  135. {
  136. $def=0;
  137. $mess='NoDefIndexpageSuccess';
  138. $sql=$empire->query("update {$dbtbpre}enewspublic set indexpageid=0");
  139. }
  140. else
  141. {
  142. $def=1;
  143. $mess='DefIndexpageSuccess';
  144. $sql=$empire->query("update {$dbtbpre}enewspublic set indexpageid='$tempid'");
  145. }
  146. GetConfig();//更新缓存
  147. //刷新首页
  148. if($def)
  149. {
  150. NewsBq($classid,$r[temptext],1,0);
  151. //删除动态模板缓存文件
  152. DelOneTempTmpfile('indexpage');
  153. }
  154. else
  155. {
  156. $indextempr=$empire->fetch1("select indextemp from ".GetTemptb("enewspubtemp")." limit 1");
  157. $indextemp=$indextempr['indextemp'];
  158. NewsBq($classid,$indextemp,1,0);
  159. //删除动态模板缓存文件
  160. DelOneTempTmpfile('indexpage');
  161. }
  162. if($sql)
  163. {
  164. //操作日志
  165. insert_dolog("tempid=$tempid&tempname=$r[tempname]&def=$def");
  166. printerror($mess,"ListIndexpage.php?gid=$gid".hReturnEcmsHashStrHref2(0));
  167. }
  168. else
  169. {
  170. printerror("DbError","history.go(-1)");
  171. }
  172. }
  173. //操作
  174. $enews=$_POST['enews'];
  175. if(empty($enews))
  176. {$enews=$_GET['enews'];}
  177. if($enews)
  178. {
  179. hCheckEcmsRHash();
  180. include("../../class/t_functions.php");
  181. include("../../data/dbcache/class.php");
  182. include("../../data/dbcache/MemberLevel.php");
  183. include("../../class/tempfun.php");
  184. }
  185. //增加首页方案
  186. if($enews=="AddIndexpage")
  187. {
  188. AddIndexpage($_POST,$logininid,$loginin);
  189. }
  190. //修改首页方案
  191. elseif($enews=="EditIndexpage")
  192. {
  193. EditIndexpage($_POST,$logininid,$loginin);
  194. }
  195. //删除首页方案
  196. elseif($enews=="DelIndexpage")
  197. {
  198. DelIndexpage($_GET['tempid'],$logininid,$loginin);
  199. }
  200. //启用首页方案
  201. elseif($enews=="DefIndexpage")
  202. {
  203. DefIndexpage($_GET['tempid'],$logininid,$loginin);
  204. }
  205. $gid=(int)$_GET['gid'];
  206. $url="<a href=ListIndexpage.php?gid=$gid".$ecms_hashur['ehref'].">管理首页方案</a>";
  207. $search="&gid=$gid".$ecms_hashur['ehref'];
  208. $page=(int)$_GET['page'];
  209. $page=RepPIntvar($page);
  210. $start=0;
  211. $line=25;//每页显示条数
  212. $page_line=12;//每页显示链接数
  213. $offset=$page*$line;//总偏移量
  214. $query="select tempid,tempname from {$dbtbpre}enewsindexpage";
  215. $totalquery="select count(*) as total from {$dbtbpre}enewsindexpage";
  216. $num=$empire->gettotal($totalquery);//取得总条数
  217. $query=$query." order by tempid desc limit $offset,$line";
  218. $sql=$empire->query($query);
  219. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  220. ?>
  221. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  222. <html>
  223. <head>
  224. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  225. <title>管理首页方案</title>
  226. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  227. </head>
  228. <body>
  229. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  230. <tr>
  231. <td width="50%">位置:
  232. <?=$url?>
  233. </td>
  234. <td><div align="right" class="emenubutton">
  235. <input type="button" name="Submit5" value="增加首页方案" onclick="self.location.href='AddIndexpage.php?enews=AddIndexpage&gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  236. </div></td>
  237. </tr>
  238. </table>
  239. <br>
  240. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  241. <tr class="header">
  242. <td width="5%" height="25"><div align="center">ID</div></td>
  243. <td width="49%" height="25"><div align="center">方案名称</div></td>
  244. <td width="17%"><div align="center">启用/取消</div></td>
  245. <td width="29%" height="25"><div align="center">操作</div></td>
  246. </tr>
  247. <?php
  248. while($r=$empire->fetch($sql))
  249. {
  250. //默认方案
  251. if($public_r['indexpageid']==$r['tempid'])
  252. {
  253. $bgcolor='#DBEAF5';
  254. $openindexpage='取消此方案';
  255. $movejs='';
  256. }
  257. else
  258. {
  259. $bgcolor='#ffffff';
  260. $openindexpage='启用此方案';
  261. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  262. }
  263. ?>
  264. <tr bgcolor="<?=$bgcolor?>"<?=$movejs?>>
  265. <td height="25"><div align="center">
  266. <?=$r[tempid]?>
  267. </div></td>
  268. <td height="25"><div align="center">
  269. <?=$r[tempname]?>
  270. </div></td>
  271. <td><div align="center"> <a href="ListIndexpage.php?enews=DefIndexpage&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确定设置?');"><?=$openindexpage?></a></div></td>
  272. <td height="25"><div align="center"> [<a href="AddIndexpage.php?enews=EditIndexpage&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">修改</a>]
  273. [<a href="AddIndexpage.php?enews=AddIndexpage&docopy=1&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">复制</a>]
  274. [<a href="../ecmstemp.php?enews=PreviewIndexpage&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" target="_blank">预览</a>]
  275. [<a href="ListIndexpage.php?enews=DelIndexpage&tempid=<?=$r[tempid]?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  276. </tr>
  277. <?
  278. }
  279. ?>
  280. <tr bgcolor="ffffff">
  281. <td height="25" colspan="4">&nbsp;
  282. <?=$returnpage?>
  283. </td>
  284. </tr>
  285. </table>
  286. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  287. <tr>
  288. <td height="25"><font color="#666666">说明:首页方案:可以将某一方案作为临时首页,特别是在节假日制作特别首页非常有用。全部取消时为使用默认首页模板。</font></td>
  289. </tr>
  290. </table>
  291. </body>
  292. </html>
  293. <?
  294. db_close();
  295. $empire=null;
  296. ?>