123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- define('EmpireCMSAdmin','1');
- require("../class/connect.php");
- require("../class/db_sql.php");
- require("../class/functions.php");
- require LoadLang("pub/fun.php");
- require("../class/t_functions.php");
- require("../data/dbcache/class.php");
- require("../data/dbcache/MemberLevel.php");
- $link=db_connect();
- $empire=new mysqlquery();
- $enews=$_POST['enews'];
- if(empty($enews))
- {
- $enews=$_GET['enews'];
- }
- //验证用户
- $lur=is_login();
- $logininid=$lur['userid'];
- $loginin=$lur['username'];
- $loginrnd=$lur['rnd'];
- $loginlevel=$lur['groupid'];
- $loginadminstyleid=$lur['adminstyleid'];
- hCheckEcmsRHash();
- $incftp=0;
- if($public_r['phpmode'])
- {
- include("../class/ftp.php");
- $incftp=1;
- }
- //防采集
- if($public_r['opennotcj'])
- {
- @include("../data/dbcache/notcj.php");
- }
- require("../class/tempfun.php");
- if($enews=="EditGbooktemp")//修改留言板模板
- {
- $temptext=$_POST[temptext];
- EditGbooktemp($temptext,$logininid,$loginin);
- }
- elseif($enews=="EditCptemp")//修改控制面板模板
- {
- $temptext=$_POST[temptext];
- EditCptemp($temptext,$logininid,$loginin);
- }
- elseif($enews=="EditLoginIframe")//修改登陆状态模板
- {
- $temptext=$_POST[temptext];
- EditLoginIframe($temptext,$logininid,$loginin);
- }
- elseif($enews=="EditLoginJstemp")//修改JS调用登陆状态模板
- {
- $temptext=$_POST[temptext];
- EditLoginJstemp($temptext,$logininid,$loginin);
- }
- elseif($enews=="EditSchallTemp")//修改全站搜索模板
- {
- $temptext=$_POST[temptext];
- EditSchallTemp($temptext,$_POST['schallsubnum'],$_POST['schalldate'],$logininid,$loginin);
- }
- elseif($enews=="AddBq")//增加标签
- {
- $add=$_POST['add'];
- $bqsay=$_POST['bqsay'];
- AddBq($add,$bqsay,$logininid,$loginin);
- }
- elseif($enews=="EditBq")//修改标签
- {
- $add=$_POST['add'];
- $bqsay=$_POST['bqsay'];
- EditBq($add,$bqsay,$logininid,$loginin);
- }
- elseif($enews=="DelBq")//删除标签
- {
- $bqid=$_GET['bqid'];
- $cid=$_GET['cid'];
- DelBq($bqid,$cid,$logininid,$loginin);
- }
- elseif($enews=="EditSearchTemp")//修改搜索表单模板
- {
- $tempname=$_POST['tempname'];
- $temptext=$_POST['temptext'];
- EditSearchTemp($tempname,$temptext,$logininid,$loginin);
- }
- elseif($enews=="EditOtherLinkTemp")//修改相关链接模板
- {
- $tempname=$_POST['tempname'];
- $temptext=$_POST['temptext'];
- EditOtherLinkTemp($tempname,$temptext,$logininid,$loginin);
- }
- elseif($enews=="EditOtherPubTemp")//修改其它公共模板
- {
- $tempname=$_POST['tempname'];
- $temptext=$_POST['temptext'];
- EditOtherPubTemp($tempname,$temptext,$logininid,$loginin);
- }
- elseif($enews=="EditPublicTemp")//修改首页模板
- {
- $temptext=$_POST['temptext'];
- EditIndextemp($temptext,$logininid,$loginin);
- }
- elseif($enews=="LoadTempInClass")//批量导入栏目模板
- {
- $path=$_GET['path'];
- $start=$_GET['start'];
- LoadTempInClass($path,$start,$logininid,$loginin);
- }
- elseif($enews=="ChangeClassListtemp")//批量更换栏目列表模板
- {
- $classid=$_POST['classid'];
- $listtempid=$_POST['listtempid'];
- ChangeClassListtemp($classid,$listtempid,$logininid,$loginin);
- }
- elseif($enews=="LoadOutBq")//导出标签
- {
- LoadOutBq($_POST,$logininid,$loginin);
- }
- elseif($enews=="ReEBakTemp")//还原模板备份
- {
- ReEBakTemp($_GET,$logininid,$loginin);
- }
- elseif($enews=="PreviewIndexpage")//预览首页方案
- {
- PreviewIndexpage($_GET['tempid'],$logininid,$loginin);
- }
- else
- {
- printerror("ErrorUrl","history.go(-1)");
- }
- db_close();
- $empire=null;
- ?>
|