熊猫办公系统
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.
 
 
 
 

149 lines
5.6 KiB

<?php
define('EmpireCMSAdmin','1');
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
$editor=1;
//验证用户
$lur=is_login();
$logininid=$lur['userid'];
$loginin=$lur['username'];
$loginrnd=$lur['rnd'];
$loginlevel=$lur['groupid'];
$loginadminstyleid=$lur['adminstyleid'];
//ehash
$ecms_hashur=hReturnEcmsHashStrAll();
//验证权限
CheckLevel($logininid,$loginin,$classid,"bq");
$enews=ehtmlspecialchars($_GET['enews']);
$cid=ehtmlspecialchars($_GET['cid']);
$url="<a href=ListBq.php".$ecms_hashur['whehref'].">管理标签</a>&nbsp;>&nbsp;增加标签";
//修改标签
if($enews=="EditBq")
{
$bqid=(int)$_GET['bqid'];
$url="<a href=ListBq.php".$ecms_hashur['whehref'].">管理标签</a>&nbsp;>&nbsp;修改标签";
$r=$empire->fetch1("select bqname,bqsay,funname,bq,issys,bqgs,isclose,classid,myorder from {$dbtbpre}enewsbq where bqid='$bqid'");
}
//分类
$cstr="";
$csql=$empire->query("select classid,classname from {$dbtbpre}enewsbqclass order by classid");
while($cr=$empire->fetch($csql))
{
$select="";
if($cr[classid]==$r[classid])
{
$select=" selected";
}
$cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
}
db_close();
$empire=null;
//--------------------html编辑器
include('../ecmseditor/eshoweditor.php');
$loadeditorjs=ECMS_ShowEditorJS('../ecmseditor/infoeditor/');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<title>标签管理</title>
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
<?=$loadeditorjs?>
<script>
function on()
{
var f=document.add
f.HTML.value=f.bqsay.value;
}
function bs(){
var f=document.add
f.bqsay.value=f.HTML.value;
}
function br(){
if(!confirm("是否复位?")){return false;}
document.add.title.select()
}
</script>
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td height="25">位置:<?=$url?></td>
</tr>
</table>
<form action="../ecmstemp.php" method="post" name="add" id="add">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25" colspan="2">增加模板标签
<input name="add[bqid]" type="hidden" id="add[bqid]" value="<?=$bqid?>">
<input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="add[cid]" type="hidden" id="add[cid]" value="<?=$cid?>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="21%" height="25">标签名:</td>
<td width="79%" height="25"><input name="add[bqname]" type="text" id="add[bqname]" value="<?=$r[bqname]?>" size="38">
<font color="#666666">(如”调用文字信息标签”)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">标签符号:</td>
<td height="25"><input name="add[bq]" type="text" id="add[bq]" value="<?=$r[bq]?>" size="38">
<font color="#666666">(如:[ad]参数[/ad],则符号为”ad”)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">所属类别:</td>
<td height="25"><select name="add[classid]" id="add[classid]">
<option value="0">不隶属于任何类别</option>
<?=$cstr?>
</select> <input type="button" name="Submit3" value="管理分类" onclick="window.open('BqClass.php<?=$ecms_hashur['whehref']?>');"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">函数名:</td>
<td height="25"><input name="add[funname]" type="text" id="add[funname]" value="<?=$r[funname]?>" size="38">
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">&nbsp;</td>
<td height="25" bgcolor="#FFFFFF"> <p>系统标签:(相对于e/class/t_functions.php文件的函数名)<br>
用户自定义标签:(相对于e/class/userfun.php文件的函数名,函数命名请以”<strong><font color="#FF0000">user_</font></strong>”开头)</p></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">标签格式:</td>
<td height="25"><input name="add[bqgs]" type="text" id="add[bqgs]" value="<?=stripSlashes($r[bqgs])?>" size="80"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">&nbsp;</td>
<td height="25">如:<font color="#FF0000">[phomenews]栏目ID/专题ID,显示条数,标题截取数,是否显示时间,操作类型[/phomenews]</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" valign="top">标签说明:</td>
<td height="25">
<?=ECMS_ShowEditorVar('bqsay',stripSlashes($r[bqsay]),'Default','../ecmseditor/infoeditor/')?>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">是否开启标签:</td>
<td height="25"><input type="radio" name="add[isclose]" value="0"<?=$r[isclose]==0?' checked':''?>>
<input type="radio" name="add[isclose]" value="1"<?=$r[isclose]==1?' checked':''?>>
否 <font color="#666666">(开启才会在模板中生效)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">排序:</td>
<td height="25"><input name="add[myorder]" type="text" id="add[myorder]" value="<?=$r[myorder]?>" size="38">
<font color="#666666">(值越大越前面)</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">&nbsp;</td>
<td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
</tr>
</table>
</form>
</body>
</html>