TranFile.php
5.69 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
<?php
require('../../../../class/connect.php');
$showmod=(int)$_GET['showmod'];
$type=(int)$_GET['type'];
$classid=(int)$_GET['classid'];
$filepass=(int)$_GET['filepass'];
$InstanceName=ehtmlspecialchars($_GET['InstanceName']);
$editor=3;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>插入附件</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="noindex, nofollow" name="robots">
<script src="../editor/dialog/common/fck_dialog_common.js" type="text/javascript"></script>
<script src="../editor/dialog/tranfile/file.js" type="text/javascript"></script>
<script type="text/javascript">
document.write( FCKTools.GetStyleHtml( GetCommonDialogCss() ) ) ;
</script>
<script type="text/javascript">
function DoCheckTranFile(obj){
var ctypes,actypes,cfiletype,sfile,sfocus;
if(obj.file.value=='')
{
alert('請選擇要上傳的文件');
obj.file.focus();
return false;
}
sfile=obj.file.value;
sfocus=0;
// Show animation
window.parent.Throbber.Show( 100 ) ;
GetE( 'divUpload' ).style.display = 'none' ;
return true;
}
function ToGetFiletype(sfile){
var filetype,s;
s=sfile.lastIndexOf(".");
filetype=sfile.substring(s+1).toLowerCase();
return '.'+filetype;
}
//返回編號
function ExpStr(str,exp){
var pos,len,ext;
pos=str.lastIndexOf(exp)+1;
len=str.length;
ext=str.substring(pos,len);
return ext;
}
function GetFname(str){
var filename,exp;
if(str.indexOf("\\")>=0)
{
exp="\\";
}
else
{
exp="/";
}
filename=ExpStr(str,exp);
return filename;
}
function ReturnFileNo(obj){
var filename,str,exp;
if(obj.no.value!='')
{
return '';
}
str=obj.file.value;
filename=GetFname(str);
obj.no.value=filename;
}
//預覽
function echoViewFile(obj,doshow){
var imgstr,filetype,fn,filename,furl,sizestr;
if(obj.inserturl.value=='')
{
return '';
}
furl=obj.inserturl.value;
filetype=ToGetFiletype(furl);
filename=GetFname(furl);
if(obj.fname.value=='')
{
fn=filename;
}
else
{
fn=obj.fname.value;
}
sizestr='';
if(obj.filesize.value!='')
{
sizestr=" ("+obj.filesize.value+")";
}
imgstr="<div style='padding:6px'><fieldset><legend>"+fn+"</legend><table cellpadding=0 cellspacing=0 border=0><tr><td><img src='<?=$public_r[newsurl]?>e/data/images/downfile.jpg' alt='文件類型: "+filetype+"' border=0 style='vertical-align:baseline'></td><td> <a href='"+furl+"' title='"+fn+"' target='_blank'>"+filename+"</a>"+sizestr+"</td></tr></table></fieldset></div>";
if(doshow==0)
{
document.getElementById("ViewFile").innerHTML=imgstr;
return '';
}
oEditor.FCK.InsertHtml(imgstr);
window.parent.Cancel();
}
</script>
</head>
<body scroll="no" style="OVERFLOW: hidden">
<div id="divInfo">
<table cellSpacing="1" cellPadding="1" width="100%" border="0">
<form action="" method="post" name="etranfileform" onsubmit="return false;">
<tr>
<td> <table cellSpacing="1" cellPadding="1" width="100%" border="0">
<tr>
<td width="100%"><span fckLang="DlgImgURL">URL</span> </td>
<td id="tdBrowse" style="DISPLAY: none" noWrap rowSpan="2">
</td>
</tr>
<tr>
<td vAlign="top"><input id="txtUrl" name="inserturl" onblur="echoViewFile(document.etranfileform,0);" style="WIDTH: 100%" type="text">
</td>
</tr>
<tr>
<td colspan="2" vAlign="top">附件名稱<br>
<input name="fname" type="text" id="fname" value="<?=ehtmlspecialchars($_GET['fname'])?>" style="width: 100%" onblur="echoViewFile(document.etranfileform,0);">
</td>
</tr>
<tr>
<td colspan="2" vAlign="top">文件大小<br>
<input name="filesize" type="text" id="filesize" value="<?=ehtmlspecialchars($_GET['filesize'])?>" style="width: 100%" onblur="echoViewFile(document.etranfileform,0);">
</td>
</tr>
</table></td>
</tr>
</form>
</table><br>
<table width="100%" border="0" cellpadding="3" cellspacing="1">
<tr>
<td>附件預覽</td>
</tr>
<tr>
<td bgcolor="#FFFFFF" id="ViewFile"> </td>
</tr>
</table>
</div>
<div id="divUpload" style="DISPLAY: none">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" id="tranpictb">
<form id="frmUpload" name="TranFlashFormT" method="post" target="UploadWindow" enctype="multipart/form-data" action="../../../../DoInfo/ecms.php" onsubmit="return DoCheckTranFile(TranFlashFormT);">
<input type=hidden name=classid value="<?=$classid?>">
<input type=hidden name=filepass value="<?=$filepass?>">
<input type=hidden name=enews value="MEditorTranFile">
<input type=hidden name=type value="0">
<input type=hidden name=doing value="0">
<input type=hidden name=tranfrom value="1">
<input type=hidden name=InstanceName value="<?=$InstanceName?>">
<tr>
<td>本地上傳<br> <input type="file" name="file" id="file" style="width: 100%">
</td>
</tr>
<tr>
<td height="30"> <input type="submit" name="Submit2" value="上 傳">
</td>
</tr>
</form>
</table>
<script type="text/javascript">
document.write( '<iframe name="UploadWindow" style="DISPLAY: none" src="' + FCKTools.GetVoidUrl() + '"><\/iframe>' ) ;
</script>
</div>
</body>
</html>