editorpic.php 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. $i=0;
  7. $line=3;//每行显示图片数
  8. $width=100;
  9. $height=80;
  10. $sub=23;//编号截取数
  11. while($r=$empire->fetch($sql))
  12. {
  13. $ono=$r[no];
  14. $r[no]=sub($r[no],0,$sub,false);
  15. $filesize=ChTheFilesize($r[filesize]);//文件大小
  16. $filetype=GetFiletype($r[filename]);//取得文件扩展名
  17. $i++;
  18. if(($i-1)%$line==0||$i==1)
  19. {
  20. $class_text.="<tr bgcolor='#DBEAF5'>";
  21. }
  22. //文件
  23. $fspath=ReturnFileSavePath($r[classid],$r[fpath]);
  24. $filepath=$r[path]?$r[path].'/':$r[path];
  25. $file=$fspath['fileurl'].$filepath.$r[filename];
  26. $buttonr=ToReturnDoFileButton($doing,$tranfrom,$field,$file,$r[filename],$r[fileid],$filesize,$filetype,$ono,$type);
  27. $button=$buttonr['button'];
  28. $buttonurl=$buttonr['bturl'];
  29. $class_text.="<td><table width='100%' border='0' cellspacing='1' cellpadding='2'>
  30. <tr>
  31. <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>
  32. <td width='4%' valign='top'> <div align='center'>
  33. <input type=checkbox name=fileid[] value='$r[fileid]'>
  34. </div></td>
  35. </tr>
  36. <tr>
  37. <td valign='bottom'>
  38. <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>
  39. </tr>
  40. <tr>
  41. <td><div align='center'><a title='".$ono."'>".$r[no]."</a></div></td>
  42. <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>
  43. </tr>
  44. </table></td>";
  45. //分割
  46. if($i%$line==0)
  47. {
  48. $class_text.="</tr>";
  49. }
  50. }
  51. if($i<>0)
  52. {
  53. $table="<table width='100%' border=0 cellpadding=3 cellspacing=1 class='tableborder'>
  54. <tr class='header'>
  55. <td>图片 (点击图片选择)</td>
  56. </tr>
  57. <tr>
  58. <td bgcolor='#FFFFFF'><table width='100%' border=1 align=center cellpadding=2 cellspacing=1 bordercolor='#FFFFFF' bgcolor='#FFFFFF'>";
  59. $table1="</table></td>
  60. </tr>
  61. <tr>
  62. <td bgcolor='#FFFFFF'>
  63. &nbsp;&nbsp;".$returnpage."
  64. </td>
  65. </tr></table>";
  66. $ys=$line-$i%$line;
  67. $p=0;
  68. for($j=0;$j<$ys&&$ys!=$line;$j++)
  69. {
  70. $p=1;
  71. $class_text.="<td>&nbsp;</td>";
  72. }
  73. if($p==1)
  74. {
  75. $class_text.="</tr>";
  76. }
  77. }
  78. $text=$table.$class_text.$table1;
  79. echo"$text";
  80. ?>
  81. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  82. <tr>
  83. <td height="25">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  84. <input name="getmark" type="checkbox" id="getmark" value="1">
  85. <a href="../SetEnews.php<?=$ecms_hashur['whehref']?>" target="_blank">加水印</a>,
  86. <input name="getsmall" type="checkbox" id="getsmall" value="1">
  87. 生成缩略图:缩图宽度:
  88. <input name="width" type="text" id="width" value="<?=$public_r['spicwidth']?>" size="6">
  89. * 高度:
  90. <input name="height" type="text" id="height" value="<?=$public_r['spicheight']?>" size="6">
  91. <input type="submit" name="Submit" value="操作选中图片">
  92. &nbsp;&nbsp;<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>
  93. </tr>
  94. </table>