ListInfo.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. require("../class/connect.php");
  3. require("../class/db_sql.php");
  4. require("../data/dbcache/class.php");
  5. require("../member/class/user.php");
  6. require("../class/q_functions.php");
  7. require LoadLang("pub/fun.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. //验证是否登陆
  11. $user=islogin();
  12. //取得模型id
  13. $mid=(int)$_GET['mid'];
  14. if(!$mid)
  15. {
  16. printerror("ErrorUrl","history.go(-1)",1);
  17. }
  18. $mr=$empire->fetch1("select tbname,qmname,listfile,sonclass from {$dbtbpre}enewsmod where mid='$mid'");
  19. if(!$mr['tbname']||InfoIsInTable($mr['tbname']))
  20. {
  21. printerror("ErrorUrl","history.go(-1)",1);
  22. }
  23. esetcookie("qdelinfo","dgcms");
  24. $totalnum=(int)$_GET['totalnum'];
  25. if(!$public_r['usetotalnum'])
  26. {
  27. $totalnum=0;
  28. }
  29. $start=0;
  30. $page=(int)$_GET['page'];
  31. $page=RepPIntvar($page);
  32. $line=25;//每行显示
  33. $page_line=10;
  34. $offset=$page*$line;
  35. $add='';
  36. $search="&mid=$mid";
  37. //审核表
  38. $ecmscheck=(int)$_GET['ecmscheck'];
  39. $addecmscheck='';
  40. $indexchecked=1;
  41. if($ecmscheck)
  42. {
  43. $search.='&ecmscheck='.$ecmscheck;
  44. $addecmscheck='&ecmscheck='.$ecmscheck;
  45. $indexchecked=0;
  46. }
  47. $infotb=ReturnInfoMainTbname($mr['tbname'],$indexchecked);
  48. //显示方式
  49. if($public_r['qlistinfomod'])
  50. {
  51. $modnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsmod where tbname='$mr[tbname]'");
  52. if($modnum>1)
  53. {
  54. $add.=' and ('.ReturnClass($mr['sonclass']).')';
  55. }
  56. }
  57. //搜索
  58. $sear=RepPostStr($_GET['sear'],1);
  59. $keyboard='';
  60. $show='';
  61. if($sear)
  62. {
  63. $keyboard=RepPostVar2($_GET['keyboard']);
  64. $show=RepPostStr($_GET['show'],1);
  65. //关键字
  66. if($keyboard)
  67. {
  68. $add.=" and (title like '%$keyboard%')";
  69. }
  70. $search.="&sear=1&keyboard=$keyboard&show=$show";
  71. }
  72. //优化
  73. $yhid=$etable_r[$mr[tbname]][yhid];
  74. $yhvar='qmlist';
  75. $yhadd='';
  76. if($yhid)
  77. {
  78. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  79. }
  80. //信息表
  81. $totalquery="select count(*) as total from ".$infotb." where ".$yhadd."userid='$user[userid]' and ismember=1".$add;
  82. if($totalnum<1)
  83. {
  84. $num=$empire->gettotal($totalquery);//取得总条数
  85. }
  86. else
  87. {
  88. $num=$totalnum;
  89. }
  90. if($public_r['usetotalnum'])
  91. {
  92. $search.="&totalnum=$num";
  93. }
  94. //checkpageno
  95. eCheckListPageNo($page,$line,$num);
  96. $returnpage=page1($num,$line,$page_line,$start,$page,$search);
  97. //导入页面
  98. $deftempfile=ECMS_PATH.'e/data/html/list/qlistinfo.php';
  99. if($mr[listfile])
  100. {
  101. $tempfile=ECMS_PATH.'e/data/html/list/q'.$mr[listfile].'.php';
  102. if(!file_exists($tempfile))
  103. {
  104. $tempfile=$deftempfile;
  105. }
  106. }
  107. else
  108. {
  109. $tempfile=$deftempfile;
  110. }
  111. require($tempfile);
  112. db_close();
  113. $empire=null;
  114. ?>