ListPage.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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,"userpage");
  21. $gid=(int)$_GET['gid'];
  22. if(!$gid)
  23. {
  24. $gid=GetDoTempGid();
  25. }
  26. $search="&gid=$gid".$ecms_hashur['ehref'];
  27. $page=(int)$_GET['page'];
  28. $page=RepPIntvar($page);
  29. $start=0;
  30. $line=25;//每页显示条数
  31. $page_line=12;//每页显示链接数
  32. $offset=$page*$line;//总偏移量
  33. $query="select id,title,path,tempid from {$dbtbpre}enewspage";
  34. $totalquery="select count(*) as total from {$dbtbpre}enewspage";
  35. //类别
  36. $add="";
  37. $classid=(int)$_GET['classid'];
  38. if($classid)
  39. {
  40. $add=" where classid=$classid";
  41. $search.="&classid=$classid";
  42. }
  43. $query.=$add;
  44. $totalquery.=$add;
  45. $num=$empire->gettotal($totalquery);//取得总条数
  46. $query=$query." order by id desc limit $offset,$line";
  47. $sql=$empire->query($query);
  48. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  49. //分类
  50. $cstr="";
  51. $csql=$empire->query("select classid,classname from {$dbtbpre}enewspageclass order by classid");
  52. while($cr=$empire->fetch($csql))
  53. {
  54. $select="";
  55. if($cr[classid]==$classid)
  56. {
  57. $select=" selected";
  58. }
  59. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  60. }
  61. ?>
  62. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  63. <html>
  64. <head>
  65. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  66. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  67. <title>管理自定义页面</title>
  68. <script>
  69. function CheckAll(form)
  70. {
  71. for (var i=0;i<form.elements.length;i++)
  72. {
  73. var e = form.elements[i];
  74. if (e.name != 'chkall')
  75. e.checked = form.chkall.checked;
  76. }
  77. }
  78. </script>
  79. </head>
  80. <body>
  81. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  82. <tr>
  83. <td width="20%" height="25">位置:<a href="ListPage.php<?=$ecms_hashur['whehref']?>">管理自定义页面</a></td>
  84. <td width="80%"><div align="right" class="emenubutton">
  85. <input type="button" name="Submit5" value="增加自定义页面" onclick="self.location.href='AddPage.php?enews=AddUserpage&gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  86. &nbsp;&nbsp;
  87. <input type="button" name="Submit5" value="管理自定义页面分类" onclick="self.location.href='PageClass.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  88. &nbsp;&nbsp;
  89. <input type="button" name="Submit52" value="管理自定义页面模板" onclick="self.location.href='ListPagetemp.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  90. </div></td>
  91. </tr>
  92. </table>
  93. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  94. <tr>
  95. <td> 选择类别:
  96. <select name="classid" id="classid" onchange=window.location='ListPage.php?<?=$ecms_hashur['ehref']?>&gid=<?=$gid?>&classid='+this.options[this.selectedIndex].value>
  97. <option value="0">显示所有类别</option>
  98. <?=$cstr?>
  99. </select> </td>
  100. </tr>
  101. </table>
  102. <br>
  103. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  104. <form name="form1" method="post" action="../ecmscom.php">
  105. <?=$ecms_hashur['form']?>
  106. <tr class="header">
  107. <td width="3%"><div align="center">
  108. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
  109. </div></td>
  110. <td width="7%" height="25"> <div align="center">ID</div></td>
  111. <td width="35%" height="25"> <div align="center">页面名称</div></td>
  112. <td width="17%"><div align="center">页面模式</div></td>
  113. <td width="19%"><div align="center">页面地址</div></td>
  114. <td width="19%" height="25"> <div align="center">操作</div></td>
  115. </tr>
  116. <?
  117. while($r=$empire->fetch($sql))
  118. {
  119. //绝对地址
  120. if(strstr($r['path'],".."))
  121. {
  122. $path="../".$r['path'];
  123. }
  124. else
  125. {
  126. $path=$r['path'];
  127. }
  128. $jspath=$public_r['newsurl'].str_replace("../../","",$r['path']);
  129. ?>
  130. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  131. <td><div align="center">
  132. <input name="id[]" type="checkbox" id="id[]" value="<?=$r[id]?>">
  133. </div></td>
  134. <td height="25"> <div align="center">
  135. <a href="AddPage.php?enews=EditUserpage&id=<?=$r[id]?>&cid=<?=$classid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>" target="_blank" title="在新窗口打开修改页面"><?=$r[id]?></a>
  136. </div></td>
  137. <td height="25"> <div align="center"><a href="<?=$path?>" target=_blank>
  138. <?=$r[title]?>
  139. </a></div></td>
  140. <td><div align="center"><?=$r['tempid']?'模板式':'页面式'?></div></td>
  141. <td><div align="center">
  142. <input name="textfield" type="text" value="<?=$jspath?>">
  143. </div></td>
  144. <td height="25"> <div align="center">[<a href="AddPage.php?enews=EditUserpage&id=<?=$r[id]?>&cid=<?=$classid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="AddPage.php?enews=AddUserpage&docopy=1&id=<?=$r[id]?>&cid=<?=$classid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">复制</a>]&nbsp;[<a href="../ecmscom.php?enews=DelUserpage&id=<?=$r[id]?>&cid=<?=$classid?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  145. </tr>
  146. <?
  147. }
  148. ?>
  149. <tr bgcolor="#FFFFFF">
  150. <td height="25" colspan="6">
  151. <?=$returnpage?>
  152. &nbsp;&nbsp;&nbsp; <input type="submit" name="Submit3" value="刷新"> <input name="enews" type="hidden" id="enews" value="DoReUserpage"> </td>
  153. </tr>
  154. <tr bgcolor="#FFFFFF">
  155. <td height="25" colspan="6"><font color="#666666">说明:点击“ID”可弹窗修改页面。</font></td>
  156. </tr>
  157. </form>
  158. </table>
  159. </body>
  160. </html>
  161. <?
  162. db_close();
  163. $empire=null;
  164. ?>