在 e/admin/ecmsinfo.php 中的具有elseif的相应的任何位置添加如下代码
elseif($enews=="MoveTitleNews_all")//批量移动标题信息分类 { $bclassid=$_POST['bclassid']; $classid=$_POST['classid']; $id=$_POST['id']; $ttid=$_POST['ttid']; MoveTitleNews_all($classid,$id,$ttid,$logininid,$loginin); }
在 e/class/hinfofun.php 中相应的任何位置添加如下代码
//移动标题分类信息 function MoveTitleNews_all($classid,$id,$ttid,$userid,$username){ global $empire,$bclassid,$class_r,$dbtbpre; $classid=(int)$classid;
$count=count($id); if(empty($count)) { printerror("NotMoveTitleNewsid","history.go(-1)"); } for($i=0;$i<$count;$i++) { $add.="id='".intval($id[$i])."' or "; } $ttid=(int)$ttid; $add=substr($add,0,strlen($add)-4); $sql=$empire->query("update {$dbtbpre}ecms_".$class_r[$classid][tbname]." set ttid=$ttid where ".$add); //刷新列表 ReListHtml($classid,1); if($sql) { insert_dolog("classid=".$classid."<br>classname=".$class_r[$classid][classname]);//操作日志 printerror("TopNewsSuccess",$_SERVER['HTTP_REFERER']); } else {printerror("DbError","history.go(-1)");} }
在到语言包中e/data/language/gb/pub/message.php 添加如下语言
'NotMoveTitleNewsid'=>'请选择要移动的标题分类信息', 'MoveTitleNewsSuccess'=>'标题分类置顶成功',
在修改e/data/html/list/listinfo.php 和 alllistinfo.php 相应的位置中添加以下代码
<?=$stts?> <input type="submit" name="Submit53" value="批量移动" onClick="document.listform.enews.value='MoveTitleNews_all';document.listform.action='ecmsinfo.php';">
在修改e/data/html/list/listinfo.php 相应的位置 <?=$qf?> 后面添加以下代码
<?=$tts?"<select name='ttid' disabled><option value='0'>标题分类</option>$tts</select>":""?>
在 $myid="<a href='ecmschtml.php?enews=ReSingleInfo&classid=$r[classid]&id[]=".$r[id]."' title='未生成'><b>".$r[id]."</b></a>"; }
下面添加如下代码
//标题分类 $cttidswhere=''; $caddr=$empire->fetch1("select ttids from {$dbtbpre}enewsclassadd"); if($caddr['ttids']&&$caddr['ttids']!=',') { $cttidswhere=' and typeid in ('.substr($caddr['ttids'],1,-1).')'; } $tts=''; $ttsql=$empire->query("select typeid,tname from {$dbtbpre}enewsinfotype where mid='$modid'".$cttidswhere." order by myorder"); while($ttr=$empire->fetch($ttsql)) { $select=''; if($ttr[typeid]==$r[ttid]) { $select=' selected'; } $tts.="<option value='$ttr[typeid]'".$select.">$ttr[tname]</option>"; } [code][/code]
上传以下图片:
|