ListBq.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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,"bq");
  21. $search=$ecms_hashur['ehref'];
  22. $page=(int)$_GET['page'];
  23. $page=RepPIntvar($page);
  24. $start=0;
  25. $line=20;//每页显示条数
  26. $page_line=12;//每页显示链接数
  27. $offset=$page*$line;//总偏移量
  28. $query="select bqid,bqname,bq,issys,funname,isclose,classid from {$dbtbpre}enewsbq";
  29. $totalquery="select count(*) as total from {$dbtbpre}enewsbq";
  30. //类别
  31. $add="";
  32. $classid=(int)$_GET['classid'];
  33. if($classid)
  34. {
  35. $add=" where classid=$classid";
  36. $search.="&classid=$classid";
  37. }
  38. $query.=$add;
  39. $totalquery.=$add;
  40. $num=$empire->gettotal($totalquery);//取得总条数
  41. $query=$query." order by myorder desc,isclose,bqid limit $offset,$line";
  42. $sql=$empire->query($query);
  43. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  44. //类别
  45. $cstr="";
  46. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsbqclass order by classid");
  47. while($cr=$empire->fetch($csql))
  48. {
  49. $select="";
  50. if($cr[classid]==$classid)
  51. {
  52. $select=" selected";
  53. }
  54. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  55. }
  56. ?>
  57. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  58. <html>
  59. <head>
  60. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  61. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  62. <title>管理标签</title>
  63. </head>
  64. <body>
  65. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  66. <tr>
  67. <td width="50%" height="25">位置:<a href="ListBq.php<?=$ecms_hashur['whehref']?>">管理标签</a></td>
  68. <td><div align="right" class="emenubutton">
  69. <input type="button" name="Submit5" value="增加标签" onclick="self.location.href='AddBq.php?enews=AddBq&gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  70. &nbsp;&nbsp;
  71. <input type="button" name="Submit5" value="导入标签" onclick="self.location.href='LoadInBq.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  72. &nbsp;&nbsp;
  73. <input type="button" name="Submit52" value="管理标签分类" onclick="self.location.href='BqClass.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  74. </div></td>
  75. </tr>
  76. </table>
  77. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  78. <tr>
  79. <td> 选择类别:
  80. <select name="classid" id="classid" onchange=window.location='ListBq.php?<?=$ecms_hashur['ehref']?>&classid='+this.options[this.selectedIndex].value>
  81. <option value="0">显示所有类别</option>
  82. <?=$cstr?>
  83. </select> </td>
  84. </tr>
  85. </table>
  86. <br>
  87. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  88. <tr class="header">
  89. <td width="5%" height="25"> <div align="center">ID</div></td>
  90. <td width="27%" height="25"> <div align="center">标签名称</div></td>
  91. <td width="26%" height="25"> <div align="center">标签符号</div></td>
  92. <td width="11%" height="25"> <div align="center">系统标签</div></td>
  93. <td width="8%"><div align="center">开启</div></td>
  94. <td width="23%" height="25"> <div align="center">操作</div></td>
  95. </tr>
  96. <?
  97. while($r=$empire->fetch($sql))
  98. {
  99. if($r[issys])
  100. {$issys="是";}
  101. else
  102. {$issys="否";}
  103. //开启
  104. if($r[isclose])
  105. {
  106. $isclose="<font color=red>关闭</font>";
  107. }
  108. else
  109. {
  110. $isclose="开启";
  111. }
  112. ?>
  113. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  114. <td height="25"> <div align="center">
  115. <?=$r[bqid]?>
  116. </div></td>
  117. <td height="25"> <div align="center">
  118. <?=$r[bqname]?>
  119. </div></td>
  120. <td height="25"> <div align="center">
  121. <?=$r[bq]?>
  122. </div></td>
  123. <td height="25"> <div align="center">
  124. <?=$issys?>
  125. </div></td>
  126. <td><div align="center"><?=$isclose?></div></td>
  127. <td height="25"> <div align="center">[<a href="AddBq.php?enews=EditBq&bqid=<?=$r[bqid]?>&cid=<?=$classid?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="../ecmstemp.php?enews=DelBq&bqid=<?=$r[bqid]?>&cid=<?=$classid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]&nbsp;[<a href="#ecms" onclick="window.open('LoadOutBq.php?bqid=<?=$r[bqid]?><?=$ecms_hashur['ehref']?>','','width=500,height=500,scrollbars=auto');">导出</a>]</div></td>
  128. </tr>
  129. <?
  130. }
  131. ?>
  132. <tr bgcolor="#FFFFFF">
  133. <td height="25" colspan="6">&nbsp;&nbsp;&nbsp;
  134. <?=$returnpage?>
  135. </td>
  136. </tr>
  137. </table>
  138. </body>
  139. </html>
  140. <?
  141. db_close();
  142. $empire=null;
  143. ?>