UpdateZt.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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,"zt");
  21. $page=(int)$_GET['page'];
  22. $page=RepPIntvar($page);
  23. $start=0;
  24. $line=25;//每页显示条数
  25. $page_line=12;//每页显示链接数
  26. $offset=$page*$line;//总偏移量
  27. $add="";
  28. $search="";
  29. $search.=$ecms_hashur['ehref'];
  30. $url="<a href=UpdateZt.php".$ecms_hashur['whehref'].">更新专题</a>";
  31. $time=time();
  32. //类别
  33. $zcid=(int)$_GET['zcid'];
  34. if($zcid)
  35. {
  36. $add=" and zcid=$zcid";
  37. $search.="&zcid=$zcid";
  38. }
  39. //分类
  40. $zcstr="";
  41. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsztclass order by classid");
  42. while($cr=$empire->fetch($csql))
  43. {
  44. $select="";
  45. if($cr[classid]==$zcid)
  46. {
  47. $select=" selected";
  48. }
  49. $zcstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  50. }
  51. $totalquery="select count(*) as total from {$dbtbpre}enewszt where usernames like '%$loginin%' and (endtime=0 or endtime>$time)".$add;
  52. $query="select * from {$dbtbpre}enewszt where usernames like '%$loginin%' and (endtime=0 or endtime>$time)".$add;
  53. $num=$empire->gettotal($totalquery);//取得总条数
  54. $query=$query." order by myorder,ztid desc limit $offset,$line";
  55. $sql=$empire->query($query);
  56. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  57. ?>
  58. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  59. <html>
  60. <head>
  61. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  62. <title>更新专题</title>
  63. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  64. </head>
  65. <body>
  66. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  67. <tr>
  68. <td width="50%">位置:
  69. <?=$url?>
  70. </td>
  71. <td><div align="right" class="emenubutton"></div></td>
  72. </tr>
  73. </table>
  74. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  75. <form name="form1" method="get" action="UpdateZt.php">
  76. <?=$ecms_hashur['eform']?>
  77. <tr>
  78. <td height="30">限制显示:
  79. <select name="zcid" id="zcid" onchange="document.form1.submit()">
  80. <option value="0">显示所有分类</option>
  81. <?=$zcstr?>
  82. </select>
  83. </td>
  84. </tr>
  85. </form>
  86. </table>
  87. <br>
  88. <table width="600" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  89. <tr class="header">
  90. <td width="13%" height="25"><div align="center">ID</div></td>
  91. <td width="58%" height="25"><div align="center">专题名</div></td>
  92. <td width="29%" height="25"><div align="center">操作</div></td>
  93. </tr>
  94. <?
  95. while($r=$empire->fetch($sql))
  96. {
  97. if($r[zturl])
  98. {
  99. $ztlink=$r[zturl];
  100. }
  101. else
  102. {
  103. $ztlink="../../../".$r[ztpath];
  104. }
  105. ?>
  106. <tr bgcolor="ffffff" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  107. <td height="25"><div align="center">
  108. <a href="../ecmschtml.php?enews=ReZtHtml&ztid=<?=$r[ztid]?><?=$ecms_hashur['href']?>"><?=$r[ztid]?></a>
  109. </div></td>
  110. <td height="25"><div align="center">
  111. <a href="<?=$ztlink?>" target="_blank"><?=$r[ztname]?></a>
  112. </div></td>
  113. <td height="25"><div align="center"><a href="#ecms" onclick="window.open('../openpage/AdminPage.php?leftfile=<?=urlencode('../special/pageleft.php?ztid='.$r[ztid].$ecms_hashur['ehref'])?>&title=<?=urlencode($r[ztname])?><?=$ecms_hashur['ehref']?>','','');">更新专题</a> <a href="../ecmschtml.php?enews=ReZtHtml&ztid=<?=$r[ztid]?>&ecms=1<?=$ecms_hashur['href']?>">刷新</a></div></td>
  114. </tr>
  115. <?
  116. }
  117. ?>
  118. <tr bgcolor="ffffff">
  119. <td height="25" colspan="3">&nbsp;&nbsp;
  120. <?=$returnpage?></td>
  121. </tr>
  122. </table>
  123. </body>
  124. </html>
  125. <?php
  126. db_close();
  127. $empire=null;
  128. ?>