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.
85 lines
2.5 KiB
85 lines
2.5 KiB
<?php
|
|
define('EmpireCMSAdmin','1');
|
|
require("../class/connect.php");
|
|
require("../class/db_sql.php");
|
|
require("../class/functions.php");
|
|
$link=db_connect();
|
|
$empire=new mysqlquery();
|
|
//验证用户
|
|
$lur=is_login();
|
|
$logininid=(int)$lur['userid'];
|
|
$loginin=$lur['username'];
|
|
$loginrnd=$lur['rnd'];
|
|
$loginlevel=$lur['groupid'];
|
|
$loginadminstyleid=$lur['adminstyleid'];
|
|
//ehash
|
|
$ecms_hashur=hReturnEcmsHashStrAll();
|
|
|
|
$user_r=$empire->fetch1("select adminclass,groupid from {$dbtbpre}enewsuser where userid='$logininid'");
|
|
//用户组权限
|
|
$gr=$empire->fetch1("select doall from {$dbtbpre}enewsgroup where groupid='$user_r[groupid]'");
|
|
if($gr['doall'])
|
|
{
|
|
$jsfile='../data/fc/cmsclass.js';
|
|
}
|
|
else
|
|
{
|
|
$jsfile='../data/fc/userclass'.$logininid.'.js';
|
|
}
|
|
//操作的栏目
|
|
$fcfile="../data/fc/ListEnews.php";
|
|
$do_class="<script src=".$jsfile."?".time()."></script>";
|
|
if(!file_exists($fcfile))
|
|
{$do_class=ShowClass_AddClass("","n",0,"|-",0,0);}
|
|
db_close();
|
|
$empire=null;
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>增加信息</title>
|
|
<link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
|
|
<script>
|
|
function changeclass(obj)
|
|
{
|
|
if(obj.addclassid.value=="")
|
|
{
|
|
alert("请选择栏目");
|
|
}
|
|
else
|
|
{
|
|
self.location.href='AddNews.php?<?=$ecms_hashur['ehref']?>&enews=AddNews&classid='+obj.addclassid.value;
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<td height="25">位置:<a href='ListAllInfo.php<?=$ecms_hashur['whehref']?>'>管理信息</a> > 增加信息</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<form name="form1" method="post" action="enews.php">
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
|
|
<?=$ecms_hashur['eform']?>
|
|
<tr class="header">
|
|
<td height="25"><div align="center">请选择要增加信息的终极栏目</div></td>
|
|
</tr>
|
|
<tr>
|
|
<td height="38" bgcolor="#FFFFFF">
|
|
<div align="center">
|
|
<select name="addclassid" size="26" id="addclassid" onchange='javascript:changeclass(document.form1);' style="width:420">
|
|
<?=$do_class?>
|
|
</select>
|
|
</div></td>
|
|
</tr>
|
|
<tr>
|
|
<td height="25" bgcolor="#FFFFFF"><div align="center"><font color="#666666">说明:蓝色条的栏目才为终极栏目。</font></div></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|