You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.8 KiB
86 lines
1.8 KiB
<?php
|
|
define('EmpireCMSAdmin','1');
|
|
require("../class/connect.php");
|
|
require("../class/db_sql.php");
|
|
require("../class/functions.php");
|
|
require("../class/delpath.php");
|
|
require("../class/copypath.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();
|
|
|
|
@set_time_limit(0);
|
|
|
|
$incftp=0;
|
|
if($public_r['phpmode'])
|
|
{
|
|
include("../class/ftp.php");
|
|
$incftp=1;
|
|
}
|
|
//防采集
|
|
if($public_r['opennotcj'])
|
|
{
|
|
@include("../data/dbcache/notcj.php");
|
|
}
|
|
//设置访问端
|
|
$moreportpid=0;
|
|
if($enews=='ChangeEnewsData')
|
|
{
|
|
$moreportpid=Moreport_hDoSetSelfPath(0);
|
|
}
|
|
//用户
|
|
if($enews=="exit")
|
|
{
|
|
include('../class/adminfun.php');
|
|
}
|
|
|
|
if($enews=="ReListHtml")//刷新信息列表
|
|
{
|
|
$classid=$_GET['classid'];
|
|
ReListHtml($classid,0);
|
|
}
|
|
elseif($enews=="AddPostUrlData")//初使化远程发布
|
|
{
|
|
$postdata=$_POST['postdata'];
|
|
AddPostUrlData($postdata,$logininid,$loginin);
|
|
}
|
|
elseif($enews=="PostUrlData")//远程发布
|
|
{
|
|
$start=$_GET['start'];
|
|
$rnd=$_GET['rnd'];
|
|
PostUrlData($start,$rnd,$logininid,$loginin);
|
|
}
|
|
elseif($enews=="ChangeEnewsData")//更新缓存
|
|
{
|
|
ChangeEnewsData($logininid,$loginin);
|
|
}
|
|
elseif($enews=="exit")//退出系统
|
|
{
|
|
loginout($logininid,$loginin,$loginrnd);
|
|
}
|
|
elseif($enews=="ChangeMoreportAdmin")//切换访问端
|
|
{
|
|
$changemoreportid=(int)$_POST['moreportid'];
|
|
Moreport_eChangeMoreportAdmin($changemoreportid,0,$logininid,$loginin);
|
|
}
|
|
else
|
|
{
|
|
printerror("ErrorUrl","history.go(-1)");
|
|
}
|
|
db_close();
|
|
$empire=null;
|
|
?>
|