织梦cms批量取消审核文档的实现方法
小编教你实现了在原来dede文章批量管理的地方 添加一个 “取消审核” :
实现方法:
修改管理目录(默认为dede)下的文件:archives_do.php 插入以下代码(位置随意 可以放审核文档下面 方便记忆):
01 /*--------------------------
02 //取消审核文档
03 function checkArchives1() { }
04 ---------------------------*/
05 else 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` arc
20
left join `dede_arctype` tp on tp.id=arc.typeid
21
left join `dede_channeltype` ch on ch.id=tp.channeltype
22
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 else
36 {
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。
找到:
1 function checkArc(aid){ 2 var qstr=getCheckboxItem(); 3 if(aid==0) aid = getOneItem(); 4 location="archives_do.php?aid="+aid+"&dopost=checkArchives&qstr="+qstr; 5 } 在下面添加代码: 1 function 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 <a href="javascript:checkArc(0)" class="coolbg"> 审核 </a> 2 <a href="javascript:checkArc1(0)" class="coolbg"> 取消审核 </a>
☉本站的源码不会像其它下载站一样植入大量的广告。为了更好的用户体验以后坚持不打水印
☉本站只提供精品源码,源码在于可用,不在多!!希望在这里找到你合适的。
☉本站提供的整站程序,均带数据及演示地址。可以在任一源码详情页查看演示地址
☉本站所有资源(包括源码、模板、素材、特效等)仅供学习与参考,请勿用于商业用途。
☉如有其他问题,请加网站客服QQ(984818011)进行交流。
- 织梦dede首页列表页获取文章对应的tag标签
- 织梦dede导航栏目顶级和二级判断二级输出不同url
- 织梦dede标签array runphp静态生成乱码BUG解决方法
- 织梦dede如何禁止会员发布文章内容带超链接
- 织梦ajax跨域提交自定义表单和跨域验证码问题
- 织梦CMS MIP文章内容页图片适配百度MIP规范
- 织梦CMS时间格式实现XX秒前、XX分钟前、XX天前
- 织梦DedeCMS更新系统缓存增加清理沉余缓存的功能
- 织梦CMS让channelartlist标签支持currentstyle属性的
- 织梦dede自带编辑器替换百度ueditor编辑器
- 织梦DEDECMS整站动态化或整站静态化设置方法
- 织梦dede 模板路径templets目录都有什么?