ListEnews.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../class/connect.php");
  4. require("../class/db_sql.php");
  5. require("../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. //验证用户
  9. $lur=is_login();
  10. $logininid=(int)$lur['userid'];
  11. $loginin=$lur['username'];
  12. $loginrnd=$lur['rnd'];
  13. $loginlevel=$lur['groupid'];
  14. $loginadminstyleid=$lur['adminstyleid'];
  15. //ehash
  16. $ecms_hashur=hReturnEcmsHashStrAll();
  17. $user_r=$empire->fetch1("select adminclass,groupid from {$dbtbpre}enewsuser where userid='$logininid'");
  18. //用户组权限
  19. $gr=$empire->fetch1("select doall from {$dbtbpre}enewsgroup where groupid='$user_r[groupid]'");
  20. if($gr['doall'])
  21. {
  22. $fcfile='../data/fc/ListEnews.php';
  23. }
  24. else
  25. {
  26. $fcfile='../data/fc/ListEnews'.$logininid.'.php';
  27. }
  28. $fclistenews='';
  29. if(file_exists($fcfile))
  30. {
  31. $fclistenews=str_replace(AddCheckViewTempCode(),'',ReadFiletext($fcfile));
  32. }
  33. //数据表
  34. $changetbs='';
  35. $dh='';
  36. $tbi=0;
  37. $tbsql=$empire->query("select tbname,tname from {$dbtbpre}enewstable order by tid");
  38. while($tbr=$empire->fetch($tbsql))
  39. {
  40. $tbi++;
  41. $changetbs.=$dh.'new ContextItem("'.$tbr['tname'].'",function(){ parent.document.main.location="ListAllInfo.php?tbname='.$tbr['tbname'].$ecms_hashur['ehref'].'"; })';
  42. if($tbi%3==0)
  43. {
  44. $changetbs.=',new ContextSeperator()';
  45. }
  46. $dh=',';
  47. }
  48. ?>
  49. <html>
  50. <head>
  51. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  52. <title>管理信息</title>
  53. <link href="../data/menu/menu.css" rel="stylesheet" type="text/css">
  54. <script src="../data/menu/menu.js" type="text/javascript"></script>
  55. <script language="javascript" src="../data/rightmenu/context_menu.js"></script>
  56. <script language="javascript" src="../data/rightmenu/ieemu.js"></script>
  57. <SCRIPT lanuage="JScript">
  58. if(self==top)
  59. {self.location.href='admin.php<?=$ecms_hashur['whehref']?>';}
  60. function chft(obj,ecms,classid){
  61. if(ecms==1)
  62. {
  63. obj.style.fontWeight='bold';
  64. }
  65. else
  66. {
  67. obj.style.fontWeight='';
  68. }
  69. obj.title='栏目ID:'+classid;
  70. }
  71. function goaddclass(){
  72. parent.main.location.href='AddClass.php?enews=AddClass<?=$ecms_hashur['ehref']?>';
  73. }
  74. function tourl(bclassid,classid){
  75. parent.main.location.href="ListNews.php?<?=$ecms_hashur['ehref']?>&bclassid="+bclassid+"&classid="+classid;
  76. }
  77. if(moz) {
  78. extendEventObject();
  79. extendElementModel();
  80. emulateAttachEvent();
  81. }
  82. //右键菜单
  83. function ShRM(obj,bclassid,classid,classurl,showmenu)
  84. {
  85. var eobj,popupoptions;
  86. classurl='<?=$public_r[newsurl]?>e/public/ClassUrl/?classid='+classid;
  87. if(showmenu==1)
  88. {
  89. popupoptions = [
  90. new ContextItem("增加信息",function(){ parent.document.main.location="AddNews.php?<?=$ecms_hashur['ehref']?>&enews=AddNews&bclassid="+bclassid+"&classid="+classid; }),
  91. new ContextSeperator(),
  92. new ContextItem("刷新栏目",function(){ parent.document.main.location="enews.php?<?=$ecms_hashur['href']?>&enews=ReListHtml&classid="+classid; }),
  93. new ContextItem("刷新栏目JS",function(){ parent.document.main.location="ecmschtml.php?<?=$ecms_hashur['href']?>&enews=ReSingleJs&doing=0&classid="+classid; }),
  94. new ContextItem("刷新首页",function(){ parent.document.main.location="ecmschtml.php?enews=ReIndex<?=$ecms_hashur['href']?>"; }),
  95. new ContextSeperator(),
  96. new ContextItem("预览首页",function(){ window.open("../../"); }),
  97. new ContextItem("预览栏目",function(){ window.open(classurl); }),
  98. new ContextSeperator(),
  99. new ContextItem("修改栏目",function(){ parent.document.main.location="AddClass.php?<?=$ecms_hashur['ehref']?>&classid="+classid+"&enews=EditClass"; }),
  100. new ContextItem("增加新栏目",function(){ parent.document.main.location="AddClass.php?enews=AddClass<?=$ecms_hashur['ehref']?>"; }),
  101. new ContextItem("复制栏目",function(){ parent.document.main.location="AddClass.php?<?=$ecms_hashur['ehref']?>&classid="+classid+"&enews=AddClass&docopy=1"; }),
  102. new ContextSeperator(),
  103. new ContextItem("数据更新",function(){ parent.document.main.location="ReHtml/ChangeData.php<?=$ecms_hashur['whehref']?>"; }),
  104. new ContextItem("增加采集节点",function(){ parent.document.main.location="AddInfoClass.php?<?=$ecms_hashur['ehref']?>&enews=AddInfoClass&newsclassid="+classid; }),
  105. new ContextItem("管理附件",function(){ parent.document.main.location="file/ListFile.php?<?=$ecms_hashur['ehref']?>&type=9&classid="+classid; }),
  106. new ContextSeperator()
  107. ]
  108. }
  109. else if(showmenu==2)
  110. {
  111. popupoptions = [
  112. <?=$changetbs?>
  113. ]
  114. }
  115. else
  116. {
  117. popupoptions = [
  118. new ContextItem("刷新栏目",function(){ parent.document.main.location="enews.php?<?=$ecms_hashur['href']?>&enews=ReListHtml&classid="+classid; }),
  119. new ContextItem("刷新栏目JS",function(){ parent.document.main.location="ecmschtml.php?<?=$ecms_hashur['href']?>&enews=ReSingleJs&doing=0&classid="+classid; }),
  120. new ContextItem("刷新首页",function(){ parent.document.main.location="ecmschtml.php?enews=ReIndex<?=$ecms_hashur['href']?>"; }),
  121. new ContextItem("数据更新",function(){ parent.document.main.location="ReHtml/ChangeData.php<?=$ecms_hashur['whehref']?>"; }),
  122. new ContextSeperator(),
  123. new ContextItem("预览首页",function(){ window.open("../../"); }),
  124. new ContextItem("预览栏目",function(){ window.open(classurl); }),
  125. new ContextSeperator(),
  126. new ContextItem("修改栏目",function(){ parent.document.main.location="AddClass.php?<?=$ecms_hashur['ehref']?>&classid="+classid+"&enews=EditClass"; }),
  127. new ContextItem("增加新栏目",function(){ parent.document.main.location="AddClass.php?enews=AddClass<?=$ecms_hashur['ehref']?>"; }),
  128. new ContextItem("复制栏目",function(){ parent.document.main.location="AddClass.php?<?=$ecms_hashur['ehref']?>&classid="+classid+"&enews=AddClass&docopy=1"; }),
  129. new ContextSeperator()
  130. ]
  131. }
  132. ContextMenu.display(popupoptions)
  133. }
  134. </SCRIPT>
  135. </head>
  136. <body onLoad="initialize();ContextMenu.intializeContextMenu();" bgcolor="#FFCFAD">
  137. <table border='0' cellspacing='0' cellpadding='0'>
  138. <tr height=20>
  139. <td id="home"><img src="../data/images/homepage.gif" border=0></td>
  140. <td><a href="#ecms" onclick="parent.main.location.href='ListAllInfo.php<?=$ecms_hashur['whehref']?>';" onmouseout="this.style.fontWeight=''" onmouseover="this.style.fontWeight='bold'" oncontextmenu="ShRM(this,0,0,'',2)"><b>管理信息</b></a></td>
  141. </tr>
  142. </table>
  143. <?php
  144. echo $fclistenews;
  145. ?>
  146. </body>
  147. </html>
  148. <?php
  149. db_close();
  150. $empire=null;
  151. ?>