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.
261 lines
8.2 KiB
261 lines
8.2 KiB
<?php
|
|
define('EmpireCMSAdmin','1');
|
|
require("../../class/connect.php");
|
|
require("../../class/db_sql.php");
|
|
require("../../class/functions.php");
|
|
require("../../class/com_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,"feedback");
|
|
$enews=$_GET['enews'];
|
|
if(empty($enews))
|
|
{
|
|
$enews=$_POST['enews'];
|
|
}
|
|
if($enews)
|
|
{
|
|
hCheckEcmsRHash();
|
|
}
|
|
if($enews=="DelFeedback")
|
|
{
|
|
$id=$_GET['id'];
|
|
$bid=$_GET['bid'];
|
|
DelFeedback($id,$bid,$logininid,$loginin);
|
|
}
|
|
elseif($enews=="DelFeedback_all")
|
|
{
|
|
$id=$_POST['id'];
|
|
$bid=$_POST['bid'];
|
|
DelFeedback_all($id,$bid,$logininid,$loginin);
|
|
}
|
|
include "../".LoadLang("pub/fun.php");
|
|
$page=(int)$_GET['page'];
|
|
$page=RepPIntvar($page);
|
|
$start=0;
|
|
$line=25;//每页显示条数
|
|
$page_line=12;//每页显示链接数
|
|
$offset=$page*$line;//总偏移量
|
|
$add='';
|
|
$and=' where ';
|
|
$search='';
|
|
$search.=$ecms_hashur['ehref'];
|
|
//选择分类
|
|
$bid=(int)$_GET['bid'];
|
|
$bidr=ReturnAdminFeedbackClass($bid,$logininid,$loginin);
|
|
if($bid)
|
|
{
|
|
$add.=$and."bid='$bid'";
|
|
$search.="&bid=$bid";
|
|
$and=' and ';
|
|
}
|
|
elseif($bidr['bids']&&$bidr['allbid']==0)
|
|
{
|
|
$add.=$and.'bid in ('.$bidr['bids'].')';
|
|
$and=' and ';
|
|
}
|
|
//是否阅读
|
|
$haveread=(int)$_GET['haveread'];
|
|
if($haveread)
|
|
{
|
|
if($haveread==1)//已读
|
|
{
|
|
$add.=$and."haveread=1";
|
|
}
|
|
else//未读
|
|
{
|
|
$add.=$and."haveread=0";
|
|
}
|
|
$and=' and ';
|
|
$search.="&haveread=$haveread";
|
|
}
|
|
//搜索
|
|
$sear=(int)$_GET['sear'];
|
|
if($sear)
|
|
{
|
|
$keyboard=RepPostVar2($_GET['keyboard']);
|
|
$show=(int)$_GET['show'];
|
|
if($keyboard)
|
|
{
|
|
if($show==1)//标题
|
|
{
|
|
$add.=$and."title like '%$keyboard%'";
|
|
}
|
|
elseif($show==2)//反馈内容
|
|
{
|
|
$add.=$and."saytext like '%$keyboard%'";
|
|
}
|
|
elseif($show==3)//姓名
|
|
{
|
|
$add.=$and."name like '%$keyboard%'";
|
|
}
|
|
elseif($show==4)//单位名称
|
|
{
|
|
$add.=$and."company like '%$keyboard%'";
|
|
}
|
|
elseif($show==5)//邮箱
|
|
{
|
|
$add.=$and."email like '%$keyboard%'";
|
|
}
|
|
else//留言IP
|
|
{
|
|
$add.=$and."ip like '%$keyboard%'";
|
|
}
|
|
$and=' and ';
|
|
$search.="&show=$show&keyboard=$keyboard";
|
|
}
|
|
}
|
|
$gbclass=$bidr['selects'];
|
|
$query="select id,bid,title,saytime,userid,username,haveread,eipport from {$dbtbpre}enewsfeedback".$add;
|
|
$totalquery="select count(*) as total from {$dbtbpre}enewsfeedback".$add;
|
|
$num=$empire->gettotal($totalquery);//取得总条数
|
|
$query=$query." order by id desc limit $offset,$line";
|
|
$sql=$empire->query($query);
|
|
$returnpage=page2($num,$line,$page_line,$start,$page,$search);
|
|
$url="<a href=feedback.php".$ecms_hashur['whehref'].">管理信息反馈</a>";
|
|
?>
|
|
<!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 CheckAll(form)
|
|
{
|
|
for (var i=0;i<form.elements.length;i++)
|
|
{
|
|
var e = form.elements[i];
|
|
if (e.name != 'chkall')
|
|
e.checked = form.chkall.checked;
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<td width="50%">位置:
|
|
<?=$url?>
|
|
</td>
|
|
<td><div align="right" class="emenubutton">
|
|
<input type="button" name="Submit5" value="管理反馈分类" onclick="self.location.href='FeedbackClass.php<?=$ecms_hashur['whehref']?>';">
|
|
|
|
<input type="button" name="Submit52" value="管理反馈字段" onclick="self.location.href='ListFeedbackF.php<?=$ecms_hashur['whehref']?>';">
|
|
</div></td>
|
|
</tr>
|
|
</table>
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<td width="35%"><div align="center">
|
|
<p align="left">选择反馈分类:
|
|
<select name="bid" id="bid" onchange=window.location='feedback.php?<?=$ecms_hashur['ehref']?>&bid='+this.options[this.selectedIndex].value>
|
|
<option value="0">显示全部反馈</option>
|
|
<?=$gbclass?>
|
|
</select>
|
|
</p>
|
|
</div></td>
|
|
<form name="searchform" method="GET" action="feedback.php">
|
|
<?=$ecms_hashur['eform']?>
|
|
<td width="65%"><div align="right">搜索:
|
|
<select name="show" id="show">
|
|
<option value="1"<?=$show==1?' selected':''?>>标题</option>
|
|
<option value="2"<?=$show==2?' selected':''?>>反馈内容</option>
|
|
<option value="3"<?=$show==3?' selected':''?>>姓名</option>
|
|
<option value="4"<?=$show==4?' selected':''?>>单位名称</option>
|
|
<option value="5"<?=$show==5?' selected':''?>>邮箱</option>
|
|
<option value="6"<?=$show==6?' selected':''?>>IP地址</option>
|
|
</select>
|
|
<input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
|
|
<select name="haveread" id="haveread">
|
|
<option value="0"<?=$haveread==0?' selected':''?>>不限</option>
|
|
<option value="1"<?=$haveread==1?' selected':''?>>已读</option>
|
|
<option value="2"<?=$haveread==2?' selected':''?>>未读</option>
|
|
</select>
|
|
<input type="submit" name="Submit3" value="搜索">
|
|
<input name="bid" type="hidden" id="bid" value="<?=$bid?>">
|
|
<input name="sear" type="hidden" id="sear" value="1">
|
|
|
|
|
|
</div></td>
|
|
</form>
|
|
</tr>
|
|
</table>
|
|
<form name="form1" method="post" action="feedback.php" onsubmit="return confirm('确认要删除?');">
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class=tableborder>
|
|
<?=$ecms_hashur['form']?>
|
|
<tr class=header>
|
|
<td width="7%" height="23"><div align="center">ID</div></td>
|
|
<td width="43%" height="23"><div align="center">标题(点击查看)</div></td>
|
|
<td width="20%" height="23"><div align="center">所属分类</div></td>
|
|
<td width="18%" height="23"><div align="center">发布时间</div></td>
|
|
<td width="12%" height="23"><div align="center">操作</div></td>
|
|
</tr>
|
|
<?
|
|
while($r=$empire->fetch($sql))
|
|
{
|
|
$br=$empire->fetch1("select bname from {$dbtbpre}enewsfeedbackclass where bid='$r[bid]'");
|
|
$username="游客";
|
|
if($r['userid'])
|
|
{
|
|
$username="<a href='../member/AddMember.php?enews=EditMember&userid=".$r['userid'].$ecms_hashur['ehref']."' target=_blank>".$r['username']."</a>";
|
|
}
|
|
$r['title']=stripSlashes($r['title']);
|
|
if(empty($r['haveread']))
|
|
{
|
|
$r['title']='<b>'.$r['title'].'</b>';
|
|
}
|
|
?>
|
|
<tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
|
|
<td height="25"><div align="center">
|
|
<?=$r[id]?>
|
|
</div></td>
|
|
<td height="25"><div align="left"><a href=#ecms onclick="window.open('ShowFeedback.php?id=<?=$r[id]?><?=$ecms_hashur['ehref']?>','','width=650,height=600,scrollbars=yes,top=70,left=100');">
|
|
<?=$r[title]?>
|
|
</a> (
|
|
<?=$username?>
|
|
)</div></td>
|
|
<td height="25"><div align="center"><a href="feedback.php?bid=<?=$r[bid]?><?=$ecms_hashur['ehref']?>">
|
|
<?=$br[bname]?>
|
|
</a></div></td>
|
|
<td height="25"><div align="center">
|
|
<?=$r[saytime]?>
|
|
</div></td>
|
|
<td height="25"><div align="center">[<a href="feedback.php?enews=DelFeedback&id=<?=$r[id]?>&bid=<?=$bid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>
|
|
<input name="id[]" type="checkbox" id="id[]" value="<?=$r[id]?>">
|
|
]</div></td>
|
|
</tr>
|
|
<?
|
|
}
|
|
?>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25" colspan="5">
|
|
<?=$returnpage?>
|
|
<input type="submit" name="Submit" value="批量删除"> <input name="bid" type="hidden" id="bid" value="<?=$bid?>">
|
|
<input name="enews" type="hidden" id="enews" value="DelFeedback_all">
|
|
|
|
<input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
|
|
全选</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25" colspan="5">说明:未读信息标题为粗体字。</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
<?
|
|
db_close();
|
|
$empire=null;
|
|
?>
|
|
|