ListFile.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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. require("../../data/dbcache/class.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. $editor=1;
  11. //验证用户
  12. $lur=is_login();
  13. $logininid=$lur['userid'];
  14. $loginin=$lur['username'];
  15. $loginrnd=$lur['rnd'];
  16. $loginlevel=$lur['groupid'];
  17. $loginadminstyleid=$lur['adminstyleid'];
  18. //ehash
  19. $ecms_hashur=hReturnEcmsHashStrAll();
  20. //验证权限
  21. CheckLevel($logininid,$loginin,$classid,"file");
  22. //参数
  23. $modtype=(int)$_GET['modtype'];
  24. $fstb=(int)$_GET['fstb'];
  25. //附件表
  26. $fstb=eReturnFileStb($fstb);
  27. //附件类型
  28. $isinfofile=0;
  29. $showfstb='';
  30. if($modtype==1)//栏目
  31. {
  32. $query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=1";
  33. $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=1";
  34. $tranname='栏目';
  35. }
  36. elseif($modtype==2)//专题
  37. {
  38. $query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=2";
  39. $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=2";
  40. $tranname='专题';
  41. }
  42. elseif($modtype==3)//广告
  43. {
  44. $query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=3";
  45. $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=3";
  46. $tranname='广告';
  47. }
  48. elseif($modtype==4)//反馈
  49. {
  50. $query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=4";
  51. $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=4";
  52. $tranname='反馈';
  53. }
  54. elseif($modtype==5)//公共
  55. {
  56. $query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_public where 1=1";
  57. $totalquery="select count(*) as total from {$dbtbpre}enewsfile_public where 1=1";
  58. $tranname='公共';
  59. }
  60. elseif($modtype==6)//会员
  61. {
  62. $query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_member where 1=1";
  63. $totalquery="select count(*) as total from {$dbtbpre}enewsfile_member where 1=1";
  64. $tranname='会员';
  65. }
  66. elseif($modtype==7)//碎片
  67. {
  68. $query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=7";
  69. $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=7";
  70. $tranname='碎片';
  71. }
  72. else//信息
  73. {
  74. $isinfofile=1;
  75. $showfstb=' - 分表'.$fstb.' ';
  76. $query="select fileid,filename,filesize,path,filetime,classid,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_{$fstb} where 1=1";
  77. $totalquery="select count(*) as total from {$dbtbpre}enewsfile_{$fstb} where 1=1";
  78. $tranname='信息';
  79. }
  80. $page=(int)$_GET['page'];
  81. $page=RepPIntvar($page);
  82. $start=0;
  83. $line=25;//每页显示条数
  84. $page_line=12;//每页显示链接数
  85. $offset=$page*$line;//总偏移量
  86. $add='';
  87. //附件类型
  88. $type=(int)$_GET['type'];
  89. if($type!=9)//其他附件
  90. {
  91. $add.=" and type='$type'";
  92. }
  93. //选择栏目
  94. $classid=(int)$_GET['classid'];
  95. /*
  96. $fcjsfile='../../data/fc/cmsclass.js';
  97. $classoptions=GetFcfiletext($fcjsfile);
  98. */
  99. //栏目
  100. if($isinfofile==1)
  101. {
  102. if($classid)
  103. {
  104. if($class_r[$classid]['islast'])
  105. {
  106. $add.=" and classid='$classid'";
  107. }
  108. else
  109. {
  110. $add.=" and ".ReturnClass($class_r[$classid]['sonclass']);
  111. }
  112. //$classoptions=str_replace("<option value='$classid'","<option value='$classid' selected",$classoptions);
  113. }
  114. }
  115. //关键字
  116. $keyboard=RepPostVar2($_GET['keyboard']);
  117. if(!empty($keyboard))
  118. {
  119. $show=RepPostStr($_GET['show'],1);
  120. //搜索全部
  121. if($show==0)
  122. {
  123. $add.=" and (filename like '%$keyboard%' or no like '%$keyboard%' or adduser like '%$keyboard%')";
  124. }
  125. //搜索文件名
  126. elseif($show==1)
  127. {
  128. $add.=" and filename like '%$keyboard%'";
  129. }
  130. //搜索编号
  131. elseif($show==2)
  132. {
  133. $add.=" and no like '%$keyboard%'";
  134. }
  135. //搜索上传者
  136. else
  137. {
  138. $add.=" and adduser like '%$keyboard%'";
  139. }
  140. }
  141. $search="&classid=$classid&type=$type&modtype=$modtype&fstb=$fstb&show=$show&keyboard=$keyboard".$ecms_hashur['ehref'];
  142. $query.=$add;
  143. $totalquery.=$add;
  144. $num=$empire->gettotal($totalquery);//取得总条数
  145. $query=$query." order by fileid desc limit $offset,$line";
  146. $sql=$empire->query($query);
  147. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  148. ?>
  149. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  150. <html>
  151. <head>
  152. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  153. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  154. <title>管理附件</title>
  155. <script>
  156. function CheckAll(form)
  157. {
  158. for (var i=0;i<form.elements.length;i++)
  159. {
  160. var e = form.elements[i];
  161. if (e.name != 'chkall')
  162. e.checked = form.chkall.checked;
  163. }
  164. }
  165. </script>
  166. </head>
  167. <body>
  168. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
  169. <tr>
  170. <td width="36%">位置:管理<?=$tranname?>附件<?=$showfstb?> (数据库式)&nbsp;</td>
  171. <td width="64%"><div align="right" class="emenubutton">
  172. </div></td>
  173. </tr>
  174. </table>
  175. <br>
  176. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
  177. <form name="form2" method="get" action="ListFile.php">
  178. <?=$ecms_hashur['eform']?>
  179. <input type=hidden name=classid value="<?=$classid?>">
  180. <input type=hidden name=modtype value="<?=$modtype?>">
  181. <input type=hidden name=fstb value="<?=$fstb?>">
  182. <tr>
  183. <td width="82%">搜索: <select name="type" id="select">
  184. <option value="9">所有附件类型</option>
  185. <option value="1"<?=$type==1?' selected':''?>>图片</option>
  186. <option value="2"<?=$type==2?' selected':''?>>Flash文件</option>
  187. <option value="3"<?=$type==3?' selected':''?>>多媒体文件</option>
  188. <option value="0"<?=$type==0?' selected':''?>>其他附件</option>
  189. </select> <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  190. <select name="show" id="show">
  191. <option value="0"<?=$show==0?' checked':''?>>不限</option>
  192. <option value="1"<?=$show==1?' checked':''?>>文件名</option>
  193. <option value="2"<?=$show==2?' checked':''?>>编号</option>
  194. <option value="3"<?=$show==3?' checked':''?>>上传者</option>
  195. </select>
  196. <span id="listfileclassnav"></span>
  197. <input type="submit" name="Submit2" value="搜索"> </td>
  198. <td width="18%"><div align="center">[<a href="../ecmsfile.php?enews=DelFreeFile<?=$ecms_hashur['href']?>" onclick="return confirm('确认要操作?');">清理失效附件</a>]</div></td>
  199. </tr>
  200. </form>
  201. </table>
  202. <form name="form1" method="post" action="../ecmsfile.php" onsubmit="return confirm('确认要删除?');">
  203. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  204. <?=$ecms_hashur['form']?>
  205. <tr class="header">
  206. <td width="5%" height="25"><div align="center">ID</div></td>
  207. <td width="29%" height="25"><div align="center">文件名</div></td>
  208. <td width="10%" height="25"><div align="center">增加者</div></td>
  209. <td width="9%"><div align="center">文件大小</div></td>
  210. <td width="17%" height="25"><div align="center">增加时间</div></td>
  211. <td width="11%" height="25"><div align="center">操作</div></td>
  212. </tr>
  213. <?php
  214. while($r=$empire->fetch($sql))
  215. {
  216. $filesize=ChTheFilesize($r[filesize]);
  217. $fspath=ReturnFileSavePath($r[classid],$r[fpath]);
  218. $filepath=$r[path]?$r[path].'/':$r[path];
  219. $path1=$fspath['fileurl'].$filepath.$r[filename];
  220. //引用
  221. $thisfileid=$r['fileid'];
  222. if($isinfofile==1&&$r['id'])
  223. {
  224. $thisfileid="<b><a href='../../public/InfoUrl/?classid=$r[classid]&id=$r[id]' target=_blank>".$r[fileid]."</a></b>";
  225. }
  226. ?>
  227. <tr bgcolor="#FFFFFF" id="file<?=$r[fileid]?>" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  228. <td height="25"><div align="center">
  229. <?=$thisfileid?>
  230. </div></td>
  231. <td height="25"><div align="center">
  232. <?=$r[no]?>
  233. <br>
  234. <a href="<?=$path1?>" target="_blank">
  235. <?=$r[filename]?>
  236. </a> </div></td>
  237. <td height="25"><div align="center">
  238. <?=$r[adduser]?>
  239. </div></td>
  240. <td><div align="center">
  241. <?=$filesize?>
  242. </div></td>
  243. <td height="25"><div align="center">
  244. <?=date('Y-m-d H:i:s',$r[filetime])?>
  245. </div></td>
  246. <td height="25"><div align="center">[<a href="../ecmsfile.php?enews=DelFile&fileid=<?=$r[fileid]?>&modtype=<?=$modtype?>&fstb=<?=$fstb?><?=$ecms_hashur['href']?>" onclick="return confirm('您是否要删除?');">删除</a>
  247. <input name="fileid[]" type="checkbox" id="fileid[]" value="<?=$r[fileid]?>" onclick="if(this.checked){file<?=$r[fileid]?>.style.backgroundColor='#DBEAF5';}else{file<?=$r[fileid]?>.style.backgroundColor='#ffffff';}">
  248. ]</div></td>
  249. </tr>
  250. <?
  251. }
  252. ?>
  253. <tr bgcolor="#FFFFFF">
  254. <td height="25" colspan="6">
  255. <?=$returnpage?>
  256. &nbsp;&nbsp; <input type="submit" name="Submit" value="批量删除"> <input name="enews" type="hidden" id="enews" value="DelFile_all">
  257. &nbsp;
  258. <input type=checkbox name=chkall value=on onClick=CheckAll(this.form)>
  259. 选中全部
  260. <input type=hidden name=classid value="<?=$classid?>">
  261. <input type=hidden name=modtype value="<?=$modtype?>">
  262. <input type=hidden name=fstb value="<?=$fstb?>">
  263. </td>
  264. </tr>
  265. <tr bgcolor="#FFFFFF">
  266. <td height="25" colspan="6"><font color="#666666">如果ID是粗体,表示有信息引用,点击ID即可查看信息页面</font></td>
  267. </tr>
  268. </table>
  269. </form>
  270. <?php
  271. if($isinfofile==1)
  272. {
  273. ?>
  274. <IFRAME frameBorder="0" id="showclassnav" name="showclassnav" scrolling="no" src="../ShowClassNav.php?ecms=5&classid=<?=$classid?><?=$ecms_hashur['ehref']?>" style="HEIGHT:0;VISIBILITY:inherit;WIDTH:0;Z-INDEX:1"></IFRAME>
  275. <?php
  276. }
  277. ?>
  278. </body>
  279. </html>
  280. <?
  281. db_close();
  282. $empire=null;
  283. ?>