"; } elseif($doing==2)//返回地址 { $bturl="ChangeFile1(2,'".$file."');"; $button=""; } else { if($tranfrom==1)//编辑器选择 { $bturl="EditorChangeFile('".$file."','".addslashes($filename)."','".$filetype."','".$filesize."','".addslashes($no)."');"; $button=""; } elseif($tranfrom==2)//特殊字段选择 { $bturl="SFormIdChangeFile('".addslashes($no)."','$file','$filesize','$filetype','$field');"; $button=""; } else { $bturl="InsertFile('".$file."','".addslashes($filename)."','".$fileid."','".$filesize."','".$filetype."','','".$type."');"; $button=""; } } $retr['button']=$button; $retr['bturl']=$bturl; return $retr; } $classid=(int)$_GET['classid']; $infoid=(int)$_GET['infoid']; $filepass=(int)$_GET['filepass']; $type=(int)$_GET['type']; $modtype=(int)$_GET['modtype']; $doing=(int)$_GET['doing']; $field=RepPostVar($_GET['field']); $tranfrom=RepPostStr($_GET['tranfrom'],1); $fileno=RepPostStr($_GET['fileno'],1); $doecmspage=RepPostStr($_GET['doecmspage'],1); if(empty($field)) { $field="ecms"; } include('eshoweditor.php'); $add=''; //附件类型 $isinfofile=0; $fstb=0; if($modtype==1)//栏目 { $query="select fileid,filename,filesize,path,filetime,no,fpath from {$dbtbpre}enewsfile_other where modtype=1 and type='$type'"; $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=1 and type='$type'"; $tranname='栏目'; } elseif($modtype==2)//专题 { $query="select fileid,filename,filesize,path,filetime,no,fpath from {$dbtbpre}enewsfile_other where modtype=2 and type='$type'"; $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=2 and type='$type'"; $tranname='专题'; } elseif($modtype==3)//广告 { $query="select fileid,filename,filesize,path,filetime,no,fpath from {$dbtbpre}enewsfile_other where modtype=3 and type='$type'"; $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=3 and type='$type'"; $tranname='广告'; } elseif($modtype==4)//反馈 { $query="select fileid,filename,filesize,path,filetime,no,fpath from {$dbtbpre}enewsfile_other where modtype=4 and type='$type'"; $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=4 and type='$type'"; $tranname='反馈'; } elseif($modtype==5)//公共 { $query="select fileid,filename,filesize,path,filetime,no,fpath from {$dbtbpre}enewsfile_public where type='$type'"; $totalquery="select count(*) as total from {$dbtbpre}enewsfile_public where type='$type'"; $tranname='公共'; } elseif($modtype==7)//碎片 { $query="select fileid,filename,filesize,path,filetime,no,fpath from {$dbtbpre}enewsfile_other where modtype=7 and type='$type'"; $totalquery="select count(*) as total from {$dbtbpre}enewsfile_other where modtype=7 and type='$type'"; $tranname='碎片'; } else//信息 { $isinfofile=1; if(!$classid||!$class_r[$classid]['tbname']) { printerror('ErrorUrl','history.go(-1)'); } if($infoid) { $index_r=$empire->fetch1("select id,classid,checked from {$dbtbpre}ecms_".$class_r[$classid]['tbname']."_index where id='$infoid' limit 1"); if(!$index_r['id']) { printerror('ErrorUrl','history.go(-1)'); } //主表 $infotb=ReturnInfoMainTbname($class_r[$classid]['tbname'],$index_r['checked']);//返回表 $infor=$empire->fetch1("select fstb from ".$infotb." where id='$infoid' limit 1"); $fstb=$infor['fstb']; } else { $fstb=$public_r['filedeftb']; } $fstb=(int)$fstb; $query="select fileid,filename,filesize,path,filetime,classid,no,fpath from {$dbtbpre}enewsfile_{$fstb} where type='$type'"; $totalquery="select count(*) as total from {$dbtbpre}enewsfile_{$fstb} where type='$type'"; $tranname='信息'; } //栏目 $searchclassid=0; $searchvarclassid=''; if($isinfofile==1) { $searchclassid=RepPostStr($_GET['searchclassid'],1); if($searchclassid=='all') { $searchclassid=0; $searchvarclassid='all'; } else { $searchclassid=$searchclassid?$searchclassid:$classid; $searchvarclassid=$searchclassid; } $searchclassid=(int)$searchclassid; if($searchclassid) { if($class_r[$searchclassid]['islast']) { $add.=" and classid='$searchclassid'"; } else { $add.=" and ".ReturnClass($class_r[$searchclassid]['sonclass']); } } } //时间范围 $filelday=(int)$_GET['filelday']; if(empty($filelday)) { $filelday=$public_r['filelday']; } if($filelday&&$filelday!=1) { $ckfilelday=time()-$filelday; $add.=" and filetime>$ckfilelday"; } //当前信息 $sinfo=(int)$_GET['sinfo']; $select_sinfo=''; if($isinfofile==1) { if($sinfo) { $add.=$infoid?" and id='$infoid'":" and id='$filepass'"; } $select_sinfo='当前信息'; } elseif($modtype!=5) { if($sinfo) { $add.=" and id='$filepass'"; } $select_sinfo='当前'.$tranname; } //关键字 $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&infoid=$infoid&filepass=$filepass&type=$type&modtype=$modtype&doing=$doing&tranfrom=$tranfrom&field=$field&show=$show&searchclassid=$searchvarclassid&keyboard=$keyboard&fileno=$fileno&filelday=$filelday&sinfo=$sinfo&doecmspage=$doecmspage".$ecms_hashur['ehref']; //分页 $page=(int)$_GET['page']; $page=RepPIntvar($page); $start=0; $line=25;//每页显示条数 if($type==1)//图片 { $line=12; } $page_line=12;//每页显示链接数 $offset=$page*$line;//总偏移量 $query.=$add; $totalquery.=$add; $num=$empire->gettotal($totalquery);//取得总条数 $query.=" order by fileid desc limit $offset,$line"; $sql=$empire->query($query); $returnpage=page2($num,$line,$page_line,$start,$page,$search); ?>
|
|