You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.4 KiB
95 lines
3.4 KiB
<?php
|
|
if(!defined('InEmpireCMS'))
|
|
{
|
|
exit();
|
|
}
|
|
|
|
$i=0;
|
|
$line=3;//每行显示图片数
|
|
$width=100;
|
|
$height=80;
|
|
$sub=23;//编号截取数
|
|
while($r=$empire->fetch($sql))
|
|
{
|
|
$ono=$r[no];
|
|
$r[no]=sub($r[no],0,$sub,false);
|
|
$filesize=ChTheFilesize($r[filesize]);//文件大小
|
|
$filetype=GetFiletype($r[filename]);//取得文件扩展名
|
|
$i++;
|
|
if(($i-1)%$line==0||$i==1)
|
|
{
|
|
$class_text.="<tr bgcolor='#DBEAF5'>";
|
|
}
|
|
//文件
|
|
$fspath=ReturnFileSavePath($r[classid],$r[fpath]);
|
|
$filepath=$r[path]?$r[path].'/':$r[path];
|
|
$file=$fspath['fileurl'].$filepath.$r[filename];
|
|
$buttonr=ToReturnDoFileButton($doing,$tranfrom,$field,$file,$r[filename],$r[fileid],$filesize,$filetype,$ono,$type);
|
|
$button=$buttonr['button'];
|
|
$buttonurl=$buttonr['bturl'];
|
|
$class_text.="<td><table width='100%' border='0' cellspacing='1' cellpadding='2'>
|
|
<tr>
|
|
<td width='96%' rowspan='2'><div align='center'><a href='#empirecms' title='点击选择' onclick=\"javascript:".$buttonurl."\"><img src='".$file."' width='".$width."' height='".$height."' border=0></a></div></td>
|
|
<td width='4%' valign='top'> <div align='center'>
|
|
<input type=checkbox name=fileid[] value='$r[fileid]'>
|
|
</div></td>
|
|
</tr>
|
|
<tr>
|
|
<td valign='bottom'>
|
|
<div align='center'><a href='cropimg/CropImage.php?fileid=".$r[fileid]."&filepass=".$filepass."&classid=$classid&infoid=$infoid&modtype=$modtype&fstb=$fstb".$ecms_hashur['ehref']."' target='_blank' title='裁剪'><img src='../../data/images/cropimg.gif' width='13' height='13' border='0'></a></div></td>
|
|
</tr>
|
|
<tr>
|
|
<td><div align='center'><a title='".$ono."'>".$r[no]."</a></div></td>
|
|
<td><div align='center'><a href='../../ViewImg/index.html?url=".$file."' target='_blank' title='预览:".$r[filename]."'><img src='../../data/images/viewimg.gif' width='13' height='13' border='0'></a></div></td>
|
|
</tr>
|
|
</table></td>";
|
|
//分割
|
|
if($i%$line==0)
|
|
{
|
|
$class_text.="</tr>";
|
|
}
|
|
}
|
|
if($i<>0)
|
|
{
|
|
$table="<table width='100%' border=0 cellpadding=3 cellspacing=1 class='tableborder'>
|
|
<tr class='header'>
|
|
<td>图片 (点击图片选择)</td>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor='#FFFFFF'><table width='100%' border=1 align=center cellpadding=2 cellspacing=1 bordercolor='#FFFFFF' bgcolor='#FFFFFF'>";
|
|
$table1="</table></td>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor='#FFFFFF'>
|
|
".$returnpage."
|
|
</td>
|
|
</tr></table>";
|
|
$ys=$line-$i%$line;
|
|
$p=0;
|
|
for($j=0;$j<$ys&&$ys!=$line;$j++)
|
|
{
|
|
$p=1;
|
|
$class_text.="<td> </td>";
|
|
}
|
|
if($p==1)
|
|
{
|
|
$class_text.="</tr>";
|
|
}
|
|
}
|
|
$text=$table.$class_text.$table1;
|
|
echo"$text";
|
|
?>
|
|
<table width="100%" border="0" cellspacing="1" cellpadding="3">
|
|
<tr>
|
|
<td height="25">
|
|
<input name="getmark" type="checkbox" id="getmark" value="1">
|
|
<a href="../SetEnews.php<?=$ecms_hashur['whehref']?>" target="_blank">加水印</a>,
|
|
<input name="getsmall" type="checkbox" id="getsmall" value="1">
|
|
生成缩略图:缩图宽度:
|
|
<input name="width" type="text" id="width" value="<?=$public_r['spicwidth']?>" size="6">
|
|
* 高度:
|
|
<input name="height" type="text" id="height" value="<?=$public_r['spicheight']?>" size="6">
|
|
<input type="submit" name="Submit" value="操作选中图片">
|
|
<input type="submit" name="Submit3" value="删除选中" onclick="document.dofile.enews.value='TDelFile_all';"><input type="checkbox" name="chkall" value="on" onclick="CheckAll(this.form)">全选 </td>
|
|
</tr>
|
|
</table>
|