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