FilePath.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"file");
  20. //基目录
  21. $basepath=eReturnEcmsMainPortPath()."d/file";//moreport
  22. $filepath=ehtmlspecialchars($_GET['filepath']);
  23. if(strstr($filepath,".."))
  24. {
  25. $filepath="";
  26. }
  27. $filepath=eReturnCPath($filepath,'');
  28. $openpath=$basepath."/".$filepath;
  29. if(!file_exists($openpath))
  30. {
  31. $openpath=$basepath;
  32. }
  33. $hand=@opendir($openpath);
  34. db_close();
  35. $empire=null;
  36. ?>
  37. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  38. <html>
  39. <head>
  40. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  41. <title>管理附件</title>
  42. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  43. <script>
  44. function CheckAll(form)
  45. {
  46. for (var i=0;i<form.elements.length;i++)
  47. {
  48. var e = form.elements[i];
  49. if (e.name != 'chkall')
  50. e.checked = form.chkall.checked;
  51. }
  52. }
  53. </script>
  54. </head>
  55. <body>
  56. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  57. <tr>
  58. <td width="34%">位置:<a href="FilePath.php<?=$ecms_hashur['whehref']?>">管理附件 (目录式)</a></td>
  59. <td width="66%"><div align="right" class="emenubutton">
  60. </div></td>
  61. </tr>
  62. </table>
  63. <br>
  64. <table width="100%" border="0" cellspacing="1" cellpadding="2">
  65. <tr>
  66. <td height="32">当前目录:<strong>/
  67. <?=$filepath?>
  68. </strong> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<a href="#ecms" onclick="javascript:history.go(-1);">返回上一页</a>]</td>
  69. </tr>
  70. </table>
  71. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  72. <form name="form1" method="post" action="../ecmsfile.php" onsubmit="return confirm('确认删除?');">
  73. <?=$ecms_hashur['form']?>
  74. <tr class="header">
  75. <td height="25"> <div align="center">选择</div></td>
  76. <td height="25"><div align="center">文件名</div></td>
  77. <td><div align="center">大小</div></td>
  78. <td><div align="center">类型</div></td>
  79. <td><div align="center">修改时间</div></td>
  80. </tr>
  81. <?php
  82. $efileurl=eReturnFileUrl(1);
  83. while($file=@readdir($hand))
  84. {
  85. if(empty($filepath))
  86. {
  87. $truefile=$file;
  88. }
  89. else
  90. {
  91. $truefile=$filepath."/".$file;
  92. }
  93. if($file=="."||$file=="..")
  94. {
  95. continue;
  96. }
  97. //目录
  98. $pathfile=$openpath."/".$file;
  99. if(is_dir($pathfile))
  100. {
  101. $filelink="'FilePath.php?filepath=".$truefile.$ecms_hashur['ehref']."'";
  102. $filename=$file;
  103. $img="../../data/images/dir/folder.gif";
  104. $checkbox="";
  105. $target="";
  106. //发布时间
  107. $ftime=@filemtime($pathfile);
  108. $filetime=date("Y-m-d H:i:s",$ftime);
  109. $filesize='<目录>';
  110. $filetype='文件夹';
  111. }
  112. //文件
  113. else
  114. {
  115. $filelink="'".eReturnFileUrl().$truefile."'";
  116. $filename=$file;
  117. $ftype=GetFiletype($file);
  118. $img='../../data/images/dir/'.substr($ftype,1,strlen($ftype))."_icon.gif";
  119. if(!file_exists($img))
  120. {
  121. $img='../../data/images/dir/unknown_icon.gif';
  122. }
  123. $checkbox="<input name='filename[]' type='checkbox' value='".$truefile."'>";
  124. $target=" target='_blank'";
  125. //发布时间
  126. $ftime=@filemtime($pathfile);
  127. $filetime=date("Y-m-d H:i:s",$ftime);
  128. //文件大小
  129. $fsize=@filesize($pathfile);
  130. $filesize=ChTheFilesize($fsize);
  131. //文件类型
  132. if(strstr($ecms_config['sets']['tranpicturetype'],','.$ftype.','))
  133. {
  134. $filetype='图片';
  135. }
  136. elseif(strstr($ecms_config['sets']['tranflashtype'],','.$ftype.','))
  137. {
  138. $filetype='FLASH';
  139. }
  140. elseif(strstr($ecms_config['sets']['mediaplayertype'],','.$ftype.',')||strstr($ecms_config['sets']['realplayertype'],','.$ftype.','))
  141. {
  142. $filetype='视频';
  143. }
  144. else
  145. {
  146. $filetype='附件';
  147. }
  148. $furl=$efileurl.$truefile;
  149. }
  150. ?>
  151. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  152. <td width="6%" height="25">
  153. <div align="center">
  154. <?=$checkbox?>
  155. </div></td>
  156. <td width="47%" height="25"><img src="<?=$img?>" width="23" height="22"><a href=<?=$filelink?><?=$target?>>
  157. <?=$filename?>
  158. </a></td>
  159. <td width="14%">
  160. <div align="right">
  161. <?=$filesize?>
  162. </div></td>
  163. <td width="10%">
  164. <div align="center">
  165. <?=$filetype?>
  166. </div></td>
  167. <td width="23%">
  168. <div align="center">
  169. <?=$filetime?>
  170. </div></td>
  171. </tr>
  172. <?
  173. }
  174. @closedir($hand);
  175. ?>
  176. <tr bgcolor="#FFFFFF">
  177. <td height="25">
  178. <div align="center">
  179. <input type="checkbox" name="chkall" value="on" onclick="CheckAll(this.form)">
  180. </div></td>
  181. <td height="25" colspan="4">
  182. <input type="submit" name="Submit" value="删除文件">
  183. <input name="enews" type="hidden" id="enews" value="DelPathFile"> <div align="center"></div>
  184. <div align="center"></div>
  185. <div align="center"></div></td>
  186. </tr>
  187. </form>
  188. </table>
  189. </body>
  190. </html>