首页 >

织梦DedeCMS批量取消审核文档的实现方法

小编教你实现了在原来dede文章批量管理的地方 添加一个 “取消审核” :

织梦DedeCMS批量取消审核文档的实现方法

实现方法:

修改管理目录(默认为dede)下的文件:archives_do.php 插入以下代码(位置随意 可以放审核文档下面 方便记忆):

01/*--------------------------02//取消审核文档03function checkArchives1() {   }04---------------------------*/05else if($dopost=="checkArchives1")06{07 CheckPurview('a_Check,a_AccCheck,sys_ArcBatch');08 require_once(DEDEADMIN."/inc/inc_archives_functions.php");09 if( !empty($aid) && empty($qstr) )10 {11  $qstr = $aid;12 }13 if($qstr=='')14 {15  ShowMsg("参数无效!",$ENV_GOBACK_URL);16  exit();17 }18 $arcids = ereg_replace('[^0-9,]','',ereg_replace('`',',',$qstr));19 $query = "Select arc.id,arc.typeid,ch.issystem,ch.maintable,ch.addtable From `dede_arctiny` arc20            left join `dede_arctype` tp on tp.id=arc.typeid21            left join `dede_channeltype` ch on ch.id=tp.channeltype22            where arc.id in($arcids) ";23 $dsql->SetQuery($query);24 $dsql->Execute('ckall');25 while($row = $dsql->GetArray('ckall'))26 {27  $aid = $row['id'];28  //print_r($row);29  $maintable = ( trim($row['maintable'])=='' ? 'dede_archives' : trim($row['maintable']) );30  $dsql->ExecuteNoneQuery("Update `dede_arctiny` set arcrank='-1' where id='$aid' ");31  if($row['issystem']==-1)32  {33   $dsql->ExecuteNoneQuery("Update `".trim($row['addtable'])."` set arcrank='-1' where aid='$aid' ");34  }35  else36  {37   $dsql->ExecuteNoneQuery("Update `$maintable` set arcrank='-1' where id='$aid' ");38  }39  $pageurl = MakeArt($aid,false);40 }41 ShowMsg("成功审核指定的文档!",$ENV_GOBACK_URL);42 exit();43}


然后再修改管理目录(默认为Dede)的模板目录(templets)的文件:content_list.htm。

找到:


1function checkArc(aid){2 var qstr=getCheckboxItem();3 if(aid==0) aid = getOneItem();4 location="archives_do.php?aid="+aid+"&dopost=checkArchives&qstr="+qstr;5}在下面添加代码:1function checkArc1(aid){2 var qstr=getCheckboxItem();3 if(aid==0) aid = getOneItem();4 location="archives_do.php?aid="+aid+"&dopost=checkArchives1&qstr="+qstr;5}


找到”审核”按钮的代码,在下面加取消审核,以下代码是审核与取消审核一起的:

1 审核 2 取消审核 



织梦DedeCMS批量取消审核文档的实现方法
  • 织梦DedeCMS默认图片集模板延长自动播放时间的方法
  • 织梦DedeCMS默认图片集模板延长自动播放时间的方法 | 织梦DedeCMS默认图片集模板延长自动播放时间的方法 ...

    织梦DedeCMS批量取消审核文档的实现方法
  • 织梦DedeCMS获取栏目当前文章方法
  • 织梦DedeCMS获取栏目当前文章方法 | 织梦DedeCMS获取栏目当前文章方法 ...

    织梦DedeCMS批量取消审核文档的实现方法
  • 设置织梦DedeCMS没有缩略图不显示默认图片
  • 设置织梦DedeCMS没有缩略图不显示默认图片 | 设置织梦DedeCMS没有缩略图不显示默认图片 ...