ListFile.php
10.3 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<?php
define('EmpireCMSAdmin','1');
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../class/functions.php");
require "../".LoadLang("pub/fun.php");
require("../../data/dbcache/class.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");
//參數
$modtype=(int)$_GET['modtype'];
$fstb=(int)$_GET['fstb'];
//附件表
$fstb=eReturnFileStb($fstb);
//附件類型
$isinfofile=0;
$showfstb='';
if($modtype==1)//欄目
{
$query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=1";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=1";
$tranname='欄目';
}
elseif($modtype==2)//專題
{
$query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=2";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=2";
$tranname='專題';
}
elseif($modtype==3)//廣告
{
$query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=3";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=3";
$tranname='廣告';
}
elseif($modtype==4)//反饋
{
$query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=4";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=4";
$tranname='反饋';
}
elseif($modtype==5)//公共
{
$query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_public where 1=1";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile_public where 1=1";
$tranname='公共';
}
elseif($modtype==6)//會員
{
$query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_member where 1=1";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile_member where 1=1";
$tranname='會員';
}
elseif($modtype==7)//碎片
{
$query="select fileid,filename,filesize,path,filetime,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_other where modtype=7";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=7";
$tranname='碎片';
}
else//信息
{
$isinfofile=1;
$showfstb=' - 分表'.$fstb.' ';
$query="select fileid,filename,filesize,path,filetime,classid,no,fpath,adduser,id,type,onclick from {$dbtbpre}enewsfile_{$fstb} where 1=1";
$totalquery="select count(*) as total from {$dbtbpre}enewsfile_{$fstb} where 1=1";
$tranname='信息';
}
$page=(int)$_GET['page'];
$page=RepPIntvar($page);
$start=0;
$line=25;//每頁顯示條數
$page_line=12;//每頁顯示鏈接數
$offset=$page*$line;//總偏移量
$add='';
//附件類型
$type=(int)$_GET['type'];
if($type!=9)//其他附件
{
$add.=" and type='$type'";
}
//選擇欄目
$classid=(int)$_GET['classid'];
/*
$fcjsfile='../../data/fc/cmsclass.js';
$classoptions=GetFcfiletext($fcjsfile);
*/
//欄目
if($isinfofile==1)
{
if($classid)
{
if($class_r[$classid]['islast'])
{
$add.=" and classid='$classid'";
}
else
{
$add.=" and ".ReturnClass($class_r[$classid]['sonclass']);
}
//$classoptions=str_replace("<option value='$classid'","<option value='$classid' selected",$classoptions);
}
}
//關鍵字
$keyboard=RepPostVar2($_GET['keyboard']);
if(!empty($keyboard))
{
$show=RepPostStr($_GET['show'],1);
//搜索全部
if($show==0)
{
$add.=" and (filename like '%$keyboard%' or no like '%$keyboard%' or adduser like '%$keyboard%')";
}
//搜索文件名
elseif($show==1)
{
$add.=" and filename like '%$keyboard%'";
}
//搜索編號
elseif($show==2)
{
$add.=" and no like '%$keyboard%'";
}
//搜索上傳者
else
{
$add.=" and adduser like '%$keyboard%'";
}
}
$search="&classid=$classid&type=$type&modtype=$modtype&fstb=$fstb&show=$show&keyboard=$keyboard".$ecms_hashur['ehref'];
$query.=$add;
$totalquery.=$add;
$num=$empire->gettotal($totalquery);//取得總條數
$query=$query." order by fileid desc limit $offset,$line";
$sql=$empire->query($query);
$returnpage=page2($num,$line,$page_line,$start,$page,$search);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
<title>管理附件</title>
<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="0">
<tr>
<td width="36%">位置:管理<?=$tranname?>附件<?=$showfstb?> (數據庫式) </td>
<td width="64%"><div align="right" class="emenubutton">
</div></td>
</tr>
</table>
<br>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
<form name="form2" method="get" action="ListFile.php">
<?=$ecms_hashur['eform']?>
<input type=hidden name=classid value="<?=$classid?>">
<input type=hidden name=modtype value="<?=$modtype?>">
<input type=hidden name=fstb value="<?=$fstb?>">
<tr>
<td width="82%">搜索: <select name="type" id="select">
<option value="9">所有附件類型</option>
<option value="1"<?=$type==1?' selected':''?>>圖片</option>
<option value="2"<?=$type==2?' selected':''?>>Flash文件</option>
<option value="3"<?=$type==3?' selected':''?>>多媒體文件</option>
<option value="0"<?=$type==0?' selected':''?>>其他附件</option>
</select> <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
<select name="show" id="show">
<option value="0"<?=$show==0?' checked':''?>>不限</option>
<option value="1"<?=$show==1?' checked':''?>>文件名</option>
<option value="2"<?=$show==2?' checked':''?>>編號</option>
<option value="3"<?=$show==3?' checked':''?>>上傳者</option>
</select>
<span id="listfileclassnav"></span>
<input type="submit" name="Submit2" value="搜索"> </td>
<td width="18%"><div align="center">[<a href="../ecmsfile.php?enews=DelFreeFile<?=$ecms_hashur['href']?>" onclick="return confirm('確認要操作?');">清理失效附件</a>]</div></td>
</tr>
</form>
</table>
<form name="form1" method="post" action="../ecmsfile.php" onsubmit="return confirm('確認要刪除?');">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<?=$ecms_hashur['form']?>
<tr class="header">
<td width="5%" height="25"><div align="center">ID</div></td>
<td width="29%" height="25"><div align="center">文件名</div></td>
<td width="10%" height="25"><div align="center">增加者</div></td>
<td width="9%"><div align="center">文件大小</div></td>
<td width="17%" height="25"><div align="center">增加時間</div></td>
<td width="11%" height="25"><div align="center">操作</div></td>
</tr>
<?php
while($r=$empire->fetch($sql))
{
$filesize=ChTheFilesize($r[filesize]);
$fspath=ReturnFileSavePath($r[classid],$r[fpath]);
$filepath=$r[path]?$r[path].'/':$r[path];
$path1=$fspath['fileurl'].$filepath.$r[filename];
//引用
$thisfileid=$r['fileid'];
if($isinfofile==1&&$r['id'])
{
$thisfileid="<b><a href='../../public/InfoUrl/?classid=$r[classid]&id=$r[id]' target=_blank>".$r[fileid]."</a></b>";
}
?>
<tr bgcolor="#FFFFFF" id="file<?=$r[fileid]?>" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
<td height="25"><div align="center">
<?=$thisfileid?>
</div></td>
<td height="25"><div align="center">
<?=$r[no]?>
<br>
<a href="<?=$path1?>" target="_blank">
<?=$r[filename]?>
</a> </div></td>
<td height="25"><div align="center">
<?=$r[adduser]?>
</div></td>
<td><div align="center">
<?=$filesize?>
</div></td>
<td height="25"><div align="center">
<?=date('Y-m-d H:i:s',$r[filetime])?>
</div></td>
<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>
<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';}">
]</div></td>
</tr>
<?
}
?>
<tr bgcolor="#FFFFFF">
<td height="25" colspan="6">
<?=$returnpage?>
<input type="submit" name="Submit" value="批量刪除"> <input name="enews" type="hidden" id="enews" value="DelFile_all">
<input type=checkbox name=chkall value=on onClick=CheckAll(this.form)>
選中全部
<input type=hidden name=classid value="<?=$classid?>">
<input type=hidden name=modtype value="<?=$modtype?>">
<input type=hidden name=fstb value="<?=$fstb?>">
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" colspan="6"><font color="#666666">如果ID是粗體,表示有信息引用,點擊ID即可查看信息頁面</font></td>
</tr>
</table>
</form>
<?php
if($isinfofile==1)
{
?>
<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>
<?php
}
?>
</body>
</html>
<?
db_close();
$empire=null;
?>