query("insert into {$dbtbpre}enewsindexpage(tempname,temptext) values('".$add[tempname]."','".eaddslashes2($add[temptext])."');"); $tempid=$empire->lastid(); //备份模板 AddEBakTemp('indexpage',1,$tempid,$add[tempname],$add[temptext],0,0,'',0,0,'',0,0,0,$userid,$username); if($sql) { //操作日志 insert_dolog("tempid=$tempid&tempname=$add[tempname]"); printerror("AddIndexpageSuccess","AddIndexpage.php?enews=AddIndexpage&gid=$gid".hReturnEcmsHashStrHref2(0)); } else { printerror("DbError","history.go(-1)"); } } //修改首页方案 function EditIndexpage($add,$userid,$username){ global $empire,$dbtbpre,$public_r; $tempid=(int)$add[tempid]; if(!$tempid||!$add[tempname]||!$add[temptext]) { printerror("EmptyIndexpageName","history.go(-1)"); } //验证权限 CheckLevel($userid,$username,$classid,"template"); $gid=(int)$add['gid']; $add[tempname]=hRepPostStr($add[tempname],1); $add[temptext]=RepPhpAspJspcode($add[temptext]); $sql=$empire->query("update {$dbtbpre}enewsindexpage set tempname='".$add[tempname]."',temptext='".eaddslashes2($add[temptext])."' where tempid='$tempid'"); //备份模板 AddEBakTemp('indexpage',1,$tempid,$add[tempname],$add[temptext],0,0,'',0,0,'',0,0,0,$userid,$username); //刷新首页 if($tempid==$public_r['indexpageid']) { NewsBq($classid,eaddslashes($add[temptext]),1,0); //删除动态模板缓存文件 DelOneTempTmpfile('indexpage'); } if($sql) { //操作日志 insert_dolog("tempid=$tempid&tempname=$add[tempname]"); printerror("EditIndexpageSuccess","ListIndexpage.php?gid=$gid".hReturnEcmsHashStrHref2(0)); } else { printerror("DbError","history.go(-1)"); } } //删除首页方案 function DelIndexpage($tempid,$userid,$username){ global $empire,$dbtbpre,$public_r; $tempid=(int)$tempid; if(empty($tempid)) { printerror("NotChangeIndexpageid","history.go(-1)"); } //验证权限 CheckLevel($userid,$username,$classid,"template"); $gid=(int)$_GET['gid']; $r=$empire->fetch1("select tempname from {$dbtbpre}enewsindexpage where tempid='$tempid'"); $sql=$empire->query("delete from {$dbtbpre}enewsindexpage where tempid='$tempid'"); if($tempid==$public_r['indexpageid']) { $empire->query("update {$dbtbpre}enewspublic set indexpageid=0"); GetConfig();//更新缓存 } //删除备份记录 DelEbakTempAll('indexpage',1,$tempid); //刷新首页 if($tempid==$public_r['indexpageid']) { $indextempr=$empire->fetch1("select indextemp from ".GetTemptb("enewspubtemp")." limit 1"); $indextemp=$indextempr['indextemp']; NewsBq($classid,$indextemp,1,0); //删除动态模板缓存文件 DelOneTempTmpfile('indexpage'); } if($sql) { //操作日志 insert_dolog("tempid=$tempid&tempname=$r[tempname]"); printerror("DelIndexpageSuccess","ListIndexpage.php?gid=$gid".hReturnEcmsHashStrHref2(0)); } else { printerror("DbError","history.go(-1)"); } } //启用首页方案 function DefIndexpage($tempid,$userid,$username){ global $empire,$dbtbpre,$public_r; $tempid=(int)$tempid; if(empty($tempid)) { printerror("NotChangeIndexpageid","history.go(-1)"); } //验证权限 CheckLevel($userid,$username,$classid,"template"); $gid=(int)$_GET['gid']; $r=$empire->fetch1("select tempname,temptext from {$dbtbpre}enewsindexpage where tempid='$tempid'"); if($tempid==$public_r['indexpageid']) { $def=0; $mess='NoDefIndexpageSuccess'; $sql=$empire->query("update {$dbtbpre}enewspublic set indexpageid=0"); } else { $def=1; $mess='DefIndexpageSuccess'; $sql=$empire->query("update {$dbtbpre}enewspublic set indexpageid='$tempid'"); } GetConfig();//更新缓存 //刷新首页 if($def) { NewsBq($classid,$r[temptext],1,0); //删除动态模板缓存文件 DelOneTempTmpfile('indexpage'); } else { $indextempr=$empire->fetch1("select indextemp from ".GetTemptb("enewspubtemp")." limit 1"); $indextemp=$indextempr['indextemp']; NewsBq($classid,$indextemp,1,0); //删除动态模板缓存文件 DelOneTempTmpfile('indexpage'); } if($sql) { //操作日志 insert_dolog("tempid=$tempid&tempname=$r[tempname]&def=$def"); printerror($mess,"ListIndexpage.php?gid=$gid".hReturnEcmsHashStrHref2(0)); } else { printerror("DbError","history.go(-1)"); } } //操作 $enews=$_POST['enews']; if(empty($enews)) {$enews=$_GET['enews'];} if($enews) { hCheckEcmsRHash(); include("../../class/t_functions.php"); include("../../data/dbcache/class.php"); include("../../data/dbcache/MemberLevel.php"); include("../../class/tempfun.php"); } //增加首页方案 if($enews=="AddIndexpage") { AddIndexpage($_POST,$logininid,$loginin); } //修改首页方案 elseif($enews=="EditIndexpage") { EditIndexpage($_POST,$logininid,$loginin); } //删除首页方案 elseif($enews=="DelIndexpage") { DelIndexpage($_GET['tempid'],$logininid,$loginin); } //启用首页方案 elseif($enews=="DefIndexpage") { DefIndexpage($_GET['tempid'],$logininid,$loginin); } $gid=(int)$_GET['gid']; $url="管理首页方案"; $search="&gid=$gid".$ecms_hashur['ehref']; $page=(int)$_GET['page']; $page=RepPIntvar($page); $start=0; $line=25;//每页显示条数 $page_line=12;//每页显示链接数 $offset=$page*$line;//总偏移量 $query="select tempid,tempname from {$dbtbpre}enewsindexpage"; $totalquery="select count(*) as total from {$dbtbpre}enewsindexpage"; $num=$empire->gettotal($totalquery);//取得总条数 $query=$query." order by tempid desc limit $offset,$line"; $sql=$empire->query($query); $returnpage=page2($num,$line,$page_line,$start,$page,$search); ?>
位置: =$url?> |
ID |
方案名称 |
启用/取消 |
操作 |
=$r[tempid]?>
|
=$r[tempname]?>
|
||
=$returnpage?> |
说明:首页方案:可以将某一方案作为临时首页,特别是在节假日制作特别首页非常有用。全部取消时为使用默认首页模板。 |