=$startid and id<=$endid";
}
}
else
{
$startday=RepPostVar($startday);
$endday=RepPostVar($endday);
if($startday&&$endday)
{
$add1.=" and truetime>=".to_time($startday." 00:00:00")." and truetime<=".to_time($endday." 23:59:59");
}
}
$b=0;
$sql=$empire->query("select id,classid,checked from {$dbtbpre}ecms_".$tbname."_index where id>$start".$add1." order by id limit ".$public_r[infolinknum]);
while($r=$empire->fetch($sql))
{
$b=1;
$new_start=$r[id];
//手动相关链接
$pubid=ReturnInfoPubid($r['classid'],$r['id']);
$infopr=$empire->fetch1("select diyotherlink from {$dbtbpre}enewsinfovote where pubid='$pubid' limit 1");
if($infopr['diyotherlink'])
{
continue;
}
//返回表
$infotb=ReturnInfoMainTbname($tbname,$r['checked']);
$infor=$empire->fetch1("select stb,keyboard from ".$infotb." where id='$r[id]' limit 1");
//返回表信息
$infodatatb=ReturnInfoDataTbname($tbname,$r['checked'],$infor['stb']);
$newkeyid=GetKeyid($infor[keyboard],$r[classid],$r[id],$class_r[$r[classid]][link_num]);
$usql=$empire->query("update ".$infodatatb." set keyid='$newkeyid' where id='$r[id]' limit 1");
}
if(empty($b))
{
insert_dolog("");//操作日志
printerror("ChangeInfoLinkSuccess",$from);
}
echo $fun_r[OneChangeInfoLinkSuccess]."(ID:".$new_start.")";
exit();
}
//检测目录已存在
function CheckPath($classpath){
global $fun_r;
if(empty($classpath)){
echo $fun_r['EmptyPath'];
}
else{
if(file_exists("../../".$classpath)){
echo $fun_r['RePath'];
}
else{
echo $fun_r['PathNot'];
}
}
exit();
}
//增加自定义页面
function AddUserpage($add,$userid,$username){
global $empire,$dbtbpre;
//操作权限
CheckLevel($userid,$username,$classid,"userpage");
$classid=(int)$add[classid];
$title=$add['title'];
$path=$add['path'];
$pagetext=$add['pagetext'];
if(empty($title)||empty($path))
{
printerror("EmptyUserpagePath","history.go(-1)");
}
$title=hRepPostStr($title,1);
$path=hRepPostStr($path,1);
$pagetext=RepPhpAspJspcode($pagetext);
$pagetitle=RepPhpAspJspcode($add[pagetitle]);
$pagekeywords=RepPhpAspJspcode($add[pagekeywords]);
$pagedescription=RepPhpAspJspcode($add[pagedescription]);
$tempid=(int)$add['tempid'];
$gid=(int)$add['gid'];
$sql=$empire->query("insert into {$dbtbpre}enewspage(title,path,pagetext,classid,pagetitle,pagekeywords,pagedescription,tempid) values('$title','$path','".eaddslashes2($pagetext)."','$classid','".eaddslashes($pagetitle)."','".eaddslashes($pagekeywords)."','".eaddslashes($pagedescription)."','$tempid');");
$id=$empire->lastid();
ReUserpage($id,$pagetext,$path,$title,$pagetitle,$pagekeywords,$pagedescription,$tempid);
if($sql)
{
//操作日志
insert_dolog("id=$id&title=$title");
printerror("AddUserpageSuccess","template/AddPage.php?enews=AddUserpage&gid=$gid&ChangePagemod=$add[pagemod]".hReturnEcmsHashStrHref2(0));
}
else
{
printerror("DbError","history.go(-1)");
}
}
//修改自定义页面
function EditUserpage($add,$userid,$username){
global $empire,$dbtbpre;
//操作权限
CheckLevel($userid,$username,$classid,"userpage");
$id=(int)$add['id'];
$classid=(int)$add[classid];
$title=$add['title'];
$path=$add['path'];
$pagetext=$add['pagetext'];
if(!$id||empty($title)||empty($path))
{
printerror("EmptyUserpagePath","history.go(-1)");
}
//改变地址
if($add['oldpath']<>$path)
{
DelFiletext($add['oldpath']);
}
$title=hRepPostStr($title,1);
$path=hRepPostStr($path,1);
$pagetext=RepPhpAspJspcode($pagetext);
$pagetitle=RepPhpAspJspcode($add[pagetitle]);
$pagekeywords=RepPhpAspJspcode($add[pagekeywords]);
$pagedescription=RepPhpAspJspcode($add[pagedescription]);
$tempid=(int)$add['tempid'];
$gid=(int)$add['gid'];
$sql=$empire->query("update {$dbtbpre}enewspage set title='$title',path='$path',pagetext='".eaddslashes2($pagetext)."',classid='$classid',pagetitle='".eaddslashes($pagetitle)."',pagekeywords='".eaddslashes($pagekeywords)."',pagedescription='".eaddslashes($pagedescription)."',tempid='$tempid' where id='$id'");
ReUserpage($id,$pagetext,$path,$title,$pagetitle,$pagekeywords,$pagedescription,$tempid);
if($sql)
{
//操作日志
insert_dolog("id=$id&title=$title");
printerror("EditUserpageSuccess","template/ListPage.php?classid=$add[cid]&gid=$gid".hReturnEcmsHashStrHref2(0));
}
else
{
printerror("DbError","history.go(-1)");
}
}
//删除自定义页面
function DelUserpage($id,$cid,$userid,$username){
global $empire,$dbtbpre;
//操作权限
CheckLevel($userid,$username,$classid,"userpage");
$id=(int)$id;
if(empty($id))
{
printerror("EmptyDelUserpageid","history.go(-1)");
}
$gid=(int)$_GET['gid'];
$r=$empire->fetch1("select title,id,path from {$dbtbpre}enewspage where id='$id'");
if(empty($r['id']))
{
printerror("NotDelUserpageid","history.go(-1)");
}
$sql=$empire->query("delete from {$dbtbpre}enewspage where id='$id'");
DelFiletext($r['path']);
//moreportdo
$eautodofile=str_replace('../../','',$r['path']);
if($eautodofile)
{
$eautodofname='delfile|'.$eautodofile.'||';
eAutodo_AddDo('eDelFileUserpage',0,0,0,0,0,$eautodofname);
}
if($sql)
{
//操作日志
insert_dolog("id=$id&title=$r[title]");
printerror("DelUserpageSuccess","template/ListPage.php?classid=$cid&gid=$gid".hReturnEcmsHashStrHref2(0));
}
else
{
printerror("DbError","history.go(-1)");
}
}
//刷新自定义页面
function DoReUserpage($add,$userid,$username){
global $empire,$dbtbpre;
//操作权限
CheckLevel($userid,$username,$classid,"userpage");
$id=$add['id'];
$count=count($id);
if(!$count)
{
printerror("EmptyReUserpageid","history.go(-1)");
}
for($i=0;$i<$count;$i++)
{
$id[$i]=(int)$id[$i];
if(empty($id[$i]))
{
continue;
}
$ur=$empire->fetch1("select id,path,pagetext,title,pagetitle,pagekeywords,pagedescription,tempid from {$dbtbpre}enewspage where id='".$id[$i]."'");
ReUserpage($ur[id],$ur[pagetext],$ur[path],$ur[title],$ur[pagetitle],$ur[pagekeywords],$ur[pagedescription],$ur[tempid]);
}
//操作日志
insert_dolog("");
printerror("DoReUserpageSuccess",EcmsGetReturnUrl());
}
//批量替换字段值
function DoRepNewstext($start,$oldword,$newword,$field,$classid,$tid,$tbname,$over,$dozz,$dotxt,$userid,$username){
global $empire,$public_r,$class_r,$fun_r,$dbtbpre,$emod_r;
$tbname=RepPostVar($tbname);
$field=RepPostVar($field);
$tid=(int)$tid;
$dotype=(int)$_POST['dotype'];
$classid=(int)$classid;
if(!$field||empty($tbname)||!$tid)
{
printerror("FailCX","history.go(-1)");
}
if($dotype==0&&strlen($oldword)==0)
{
printerror("FailCX","history.go(-1)");
}
CheckLevel($userid,$username,$classid,"repnewstext");//验证权限
//变量替换
$postoldword=ClearAddsData($oldword);
$postnewword=ClearAddsData($newword);
//替换条件
if($classid)//按栏目替换
{
if(empty($class_r[$classid][islast]))//中级栏目
{
$where=ReturnClass($class_r[$classid][sonclass]);
}
else//终极栏目
{
$where="classid='$classid'";
}
$add1=" and (".$where.")";
$add2=" where (".$where.")";
}
$fr=$empire->fetch1("select tid,savetxt,tbdataf from {$dbtbpre}enewsf where tbname='$tbname' and f='$field' limit 1");
//系统字段
$specialdatafield=',keyid,dokey,newstempid,closepl,haveaddfen,infotags,';
if(!$fr['tid']&&stristr($specialdatafield,','.$field.','))
{
$fr['tbdataf']=1;
}
//覆盖方式
if($dotype==1)
{
$repoldword=addslashes($oldword);
$repnewword=addslashes($newword);
if($over==1)//完全替换
{
if(empty($add2))
{
$and=" where ";
}
else
{
$and=" and ";
}
$add2.=$and.$field."='".$repoldword."'";
}
if($fr['tbdataf'])//副表
{
//已审核
$tbr=$empire->fetch1("select datatbs from {$dbtbpre}enewstable where tbname='$tbname' limit 1");
if($tbr['datatbs'])
{
$dtbr=explode(',',$tbr['datatbs']);
$count=count($dtbr);
for($i=1;$i<$count-1;$i++)
{
$empire->query("update {$dbtbpre}ecms_".$tbname."_data_".$dtbr[$i]." set ".$field."='$repnewword'".$add2);
}
}
//未审核
$empire->query("update {$dbtbpre}ecms_".$tbname."_check_data set ".$field."='$repnewword'".$add2);
}
else//主表
{
$empire->query("update {$dbtbpre}ecms_".$tbname." set ".$field."='$repnewword'".$add2);
//未审核
$empire->query("update {$dbtbpre}ecms_".$tbname."_check set ".$field."='$repnewword'".$add2);
}
//替换完毕
insert_dolog("tbname=".$tbname."&field=".$field."&dotype=1
oldword=".$oldword."
newword=".$newword);//操作日志
printerror("DoRepNewstextSuccess","db/RepNewstext.php?tid=$tid".hReturnEcmsHashStrHref2(0));
}
//存文本替换
elseif($fr['savetxt'])
{
$repoldword=addslashes($postoldword);
$repnewword=addslashes($postnewword);
//字段
$selectf=$fr['tbdataf']?',stb':','.$field;
$fieldform="";
if(empty($public_r[dorepnum]))
{
$public_r[dorepnum]=600;
}
$start=(int)$start;
$b=0;
$sql=$empire->query("select id,checked from {$dbtbpre}ecms_".$tbname."_index where id>$start".$add1." order by id limit ".$public_r[dorepnum]);
while($r=$empire->fetch($sql))
{
$b=1;
$newstart=$r[id];
//返回表
$infotb=ReturnInfoMainTbname($tbname,$r['checked']);
//主表
$infor=$empire->fetch1("select isurl".$selectf." from ".$infotb." where id='$r[id]' limit 1");
if($infor['isurl'])
{
continue;
}
//副表
if($fr['tbdataf'])
{
//返回表信息
$infodatatb=ReturnInfoDataTbname($tbname,$r['checked'],$infor['stb']);
$finfor=$empire->fetch1("select ".$field." from ".$infodatatb." where id='$r[id]' limit 1");
$infor[$field]=$finfor[$field];
}
$value=GetTxtFieldText($infor[$field]);
if(empty($value))
{
continue;
}
if($dozz==1)//正则
{
$newvalue=DoRepNewstextZz($repoldword,$repnewword,$value);//正则替换
}
else//普通
{
if(!stristr($value,$repoldword))
{
continue;
}
$newvalue=str_replace($repoldword,$repnewword,$value);
}
EditTxtFieldText($infor[$field],$newvalue);
}
//替换完毕
if(empty($b))
{
insert_dolog("tbname=".$tbname."&field=".$field."
oldword=".$oldword."
newword=".$newword);//操作日志
printerror("DoRepNewstextSuccess","db/RepNewstext.php?tid=$tid".hReturnEcmsHashStrHref2(0));
}
EchoRepFieldForm($tid,$tbname,$over,$dozz,$dotxt,$newstart,$fieldform,$classid,$postoldword,$postnewword);
}
//正则替换
elseif($dozz==1)
{
//字段
$selectf=$fr['tbdataf']?',stb':','.$field;
$fieldform="";
if(empty($public_r[dorepnum]))
{
$public_r[dorepnum]=600;
}
$start=(int)$start;
$b=0;
$sql=$empire->query("select id,checked from {$dbtbpre}ecms_".$tbname."_index where id>$start".$add1." order by id limit ".$public_r[dorepnum]);
while($r=$empire->fetch($sql))
{
$b=1;
$newstart=$r[id];
//返回表
$infotb=ReturnInfoMainTbname($tbname,$r['checked']);
//主表
$infor=$empire->fetch1("select isurl".$selectf." from ".$infotb." where id='$r[id]' limit 1");
if($infor['isurl'])
{
continue;
}
if($fr['tbdataf'])//副表
{
//返回表信息
$infodatatb=ReturnInfoDataTbname($tbname,$r['checked'],$infor['stb']);
$finfor=$empire->fetch1("select ".$field." from ".$infodatatb." where id='$r[id]' limit 1");
$newvalue=DoRepNewstextZz($oldword,$newword,stripSlashes($finfor[$field]));//正则替换
$empire->query("update ".$infodatatb." set ".$field."='".addslashes($newvalue)."' where id='$r[id]'");
}
else//主表
{
$newvalue=DoRepNewstextZz($oldword,$newword,stripSlashes($infor[$field]));//正则替换
$empire->query("update ".$infotb." set ".$field."='".addslashes($newvalue)."' where id='$r[id]'");
}
}
//替换完毕
if(empty($b))
{
insert_dolog("tbname=".$tbname."&field=".$field."
oldword=".$oldword."
newword=".$newword);//操作日志
printerror("DoRepNewstextSuccess","db/RepNewstext.php?tid=$tid".hReturnEcmsHashStrHref2(0));
}
EchoRepFieldForm($tid,$tbname,$over,$dozz,$dotxt,$newstart,$fieldform,$classid,$postoldword,$postnewword);
}
//普通替换
else
{
$repoldword=eaddslashes2($oldword);
$repnewword=eaddslashes2($newword);
if($over==1)//完全替换
{
if(empty($add2))
{
$and=" where ";
}
else
{
$and=" and ";
}
$add2.=$and.$field."='".$repoldword."'";
}
if($fr['tbdataf'])//副表
{
//已审核
$tbr=$empire->fetch1("select datatbs from {$dbtbpre}enewstable where tbname='$tbname' limit 1");
if($tbr['datatbs'])
{
$dtbr=explode(',',$tbr['datatbs']);
$count=count($dtbr);
for($i=1;$i<$count-1;$i++)
{
$empire->query("update {$dbtbpre}ecms_".$tbname."_data_".$dtbr[$i]." set ".$field."=REPLACE(".$field.",'$repoldword','$repnewword')".$add2);
}
}
//未审核
$empire->query("update {$dbtbpre}ecms_".$tbname."_check_data set ".$field."=REPLACE(".$field.",'$repoldword','$repnewword')".$add2);
}
else//主表
{
$empire->query("update {$dbtbpre}ecms_".$tbname." set ".$field."=REPLACE(".$field.",'$repoldword','$repnewword')".$add2);
//未审核
$empire->query("update {$dbtbpre}ecms_".$tbname."_check set ".$field."=REPLACE(".$field.",'$repoldword','$repnewword')".$add2);
}
//替换完毕
insert_dolog("tbname=".$tbname."&field=".$field."
oldword=".$oldword."
newword=".$newword);//操作日志
printerror("DoRepNewstextSuccess","db/RepNewstext.php?tid=$tid".hReturnEcmsHashStrHref2(0));
}
}
//正则替换信息
function DoRepNewstextZz($oldword,$newword,$text){
$zztext=RepInfoZZ($oldword,"empire-cms-wm.chief-phome",0);
$text=preg_replace($zztext,$newword,$text);
return $text;
}
//输出批量替换字段表单
function EchoRepFieldForm($tid,$tbname,$over,$dozz,$dotxt,$newstart,$fieldform,$classid,$oldword,$newword){
global $fun_r;
$dotype=(int)$_POST['dotype'];
?>
=$fun_r['RepOneNewstextSuccess']?>(ID:=$newstart?>)