首页 > CMS > 帝国Empire > 正文

帝国CMS批量修改文章未审核状态及批量修改上线时间

2024-08-28 12:26:47
字体:
来源:转载
供稿:网友

帝国CMS批量修改审核文章未审核状态,批量自定义指定文件上线时间!

用法:

后台增加自定义页面  PHP CODE:
 

$infouptime=to_time('2016-06-12 10:50:19');  //上线时间
$sql=$empire->query("select * from {$dbtbpre}ecms_".$class_r[2][tbname]." where  id BETWEEN 1 and 100");
while($r=$empire->fetch($sql)){
$id=$r[id];
$classid=$r[classid];
$nihao=$empire->query("update {$dbtbpre}ecms_".$class_r[2][tbname]."_index set checked=0 where id=$r[id]");
MoveCheckInfoData($class_r[2][tbname],1,$r['stb'],"id=$r[id]");
$pubid=ReturnInfoPubid($classid,$id);
$copyids='';
$num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsinfovote where pubid='$pubid' limit 1");
if($num)    //修改
{
$empire->query("update {$dbtbpre}enewsinfovote set copyids='$copyids',infouptime='$infouptime' where pubid='$pubid' limit 1");
}
else    //增加
{
$intime=$empire->query("insert into {$dbtbpre}enewsinfovote(pubid,id,classid,infouptime,copyids) values('$pubid','$id','$classid','$infouptime','$copyids');");
}
AddClassInfos($classid,'','-1');
}

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表