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.
274 lines
9.0 KiB
274 lines
9.0 KiB
<?php
|
|
define('EmpireCMSAdmin','1');
|
|
require("../../class/connect.php");
|
|
require("../../class/db_sql.php");
|
|
require("../../class/functions.php");
|
|
require("../../member/class/user.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,"member");
|
|
$r=array();
|
|
$userdate=0;
|
|
$enews=ehtmlspecialchars($_GET['enews']);
|
|
$changegroupid=(int)$_GET['changegroupid'];
|
|
$url="<a href=ListMember.php".$ecms_hashur['whehref'].">管理会员</a> > 增加会员";
|
|
if($enews=="EditMember")
|
|
{
|
|
$userid=(int)$_GET['userid'];
|
|
//取得用户资料
|
|
$r=ReturnUserInfo($userid);
|
|
$r['groupid']=$r['groupid']?$r['groupid']:eReturnMemberDefGroupid();
|
|
$addr=$empire->fetch1("select * from {$dbtbpre}enewsmemberadd where userid='$userid' limit 1");
|
|
$url="<a href=ListMember.php".$ecms_hashur['whehref'].">管理会员</a> > 修改会员资料:<b>".$r[username]."</b>";
|
|
//时间
|
|
if($r[userdate])
|
|
{
|
|
$userdate=$r[userdate]-time();
|
|
if($userdate<=0)
|
|
{
|
|
OutTimeZGroup($userid,$r['zgroupid']);
|
|
if($r['zgroupid'])
|
|
{
|
|
$r['groupid']=$r['zgroupid'];
|
|
$r['zgroupid']=0;
|
|
}
|
|
$userdate=0;
|
|
}
|
|
else
|
|
{
|
|
$userdate=round($userdate/(24*3600));
|
|
}
|
|
}
|
|
}
|
|
if($changegroupid)
|
|
{
|
|
$r['groupid']=$changegroupid;
|
|
}
|
|
//----------会员组
|
|
$sql=$empire->query("select groupid,groupname from {$dbtbpre}enewsmembergroup order by level");
|
|
while($level_r=$empire->fetch($sql))
|
|
{
|
|
if($r[groupid]==$level_r[groupid])
|
|
{$select=" selected";}
|
|
else
|
|
{$select="";}
|
|
$group.="<option value=".$level_r[groupid].$select.">".$level_r[groupname]."</option>";
|
|
if($r[zgroupid]==$level_r[groupid])
|
|
{$zselect=" selected";}
|
|
else
|
|
{$zselect="";}
|
|
$zgroup.="<option value=".$level_r[groupid].$zselect.">".$level_r[groupname]."</option>";
|
|
}
|
|
//内部组
|
|
$ingroup='';
|
|
$inmsql=$empire->query("select * from {$dbtbpre}enewsingroup order by myorder");
|
|
while($inm_r=$empire->fetch($inmsql))
|
|
{
|
|
if($r['ingid']==$inm_r['gid'])
|
|
{$select=" selected";}
|
|
else
|
|
{$select="";}
|
|
$ingroup.="<option value=".$inm_r['gid'].$select.">".$inm_r['gname']."</option>";
|
|
}
|
|
//管理组
|
|
$magname='';
|
|
$magadminname='';
|
|
if($r['agid'])
|
|
{
|
|
$r['agid']=(int)$r['agid'];
|
|
$magr=$empire->fetch1("select * from {$dbtbpre}enewsag where agid='".$r['agid']."'");
|
|
$magname=$magr['agname'];
|
|
if($magname)
|
|
{
|
|
if($magr['isadmin']==9)
|
|
{
|
|
$magadminname='管理员 ('.$magr['isadmin'].')';
|
|
}
|
|
elseif($magr['isadmin']==5)
|
|
{
|
|
$magadminname='版主 ('.$magr['isadmin'].')';
|
|
}
|
|
elseif($magr['isadmin']==1)
|
|
{
|
|
$magadminname='实习版主 ('.$magr['isadmin'].')';
|
|
}
|
|
else
|
|
{
|
|
$magadminname='('.$magr['isadmin'].')';
|
|
}
|
|
}
|
|
}
|
|
//风格
|
|
$spacestyle='';
|
|
$spacesql=$empire->query("select styleid,stylename from {$dbtbpre}enewsspacestyle");
|
|
while($spacer=$empire->fetch($spacesql))
|
|
{
|
|
$selected='';
|
|
if($spacer[styleid]==$addr[spacestyleid])
|
|
{
|
|
$selected=' selected';
|
|
}
|
|
$spacestyle.="<option value='$spacer[styleid]'".$selected.">".$spacer[stylename]."</option>";
|
|
}
|
|
//取得表单
|
|
$formid=GetMemberFormId($r[groupid]);
|
|
$formfile='../../data/html/memberform'.$formid.'.php';
|
|
?>
|
|
<!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">
|
|
</head>
|
|
|
|
<body>
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<td>位置:<?=$url?></td>
|
|
</tr>
|
|
</table>
|
|
<form name="form1" method="post" action="ListMember.php" enctype="multipart/form-data">
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
|
|
<?=$ecms_hashur['form']?>
|
|
<input type=hidden name=add[oldusername] value='<?=$r[username]?>'>
|
|
<input type=hidden name=add[userid] value='<?=$userid?>'>
|
|
<tr class="header">
|
|
<td height="25" colspan="2">修改资料
|
|
<input name="enews" type="hidden" id="enews" value="<?=$enews?>"> </td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td width="25%" height="25">用户名</td>
|
|
<td width="75%" height="25"><input name=add[username] type=text id="add[username]" value='<?=$r[username]?>'></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">密码</td>
|
|
<td height="25"><input name="add[password]" type="password" id="add[password]">
|
|
(修改时:如不想修改,请留空)</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">审核</td>
|
|
<td height="25"><input name="add[checked]" type="checkbox" id="add[checked]" value="1"<?=$r[checked]==1?' checked':''?>>
|
|
审核通过</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">实名状态</td>
|
|
<td height="25"><input type="radio" name="add[isern]" value="0"<?=$r['isern']==0?' checked':''?>>未实名
|
|
<input type="radio" name="add[isern]" value="1"<?=$r['isern']==1?' checked':''?>>已实名</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25" valign="top">所属会员组<br> <br> <input type="button" name="Submit3" value="管理会员组" onclick="window.open('ListMemberGroup.php<?=$ecms_hashur['whehref']?>');"> </td>
|
|
<td height="25"><select name="add[groupid]" size="6" id="add[groupid]" onchange="self.location.href='AddMember.php?<?=$ecms_hashur['ehref']?>&enews=EditMember&userid=<?=$userid?>&changegroupid='+this.options[this.selectedIndex].value;">
|
|
<?=$group?>
|
|
</select></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">所属内部组</td>
|
|
<td height="25"><select name="add[ingid]" id="add[ingid]">
|
|
<option value="0"<?=$r['ingid']==0?' selected':''?>>不属于</option>
|
|
<?=$ingroup?>
|
|
</select> </td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">邮箱</td>
|
|
<td height="25"><input name="add[email]" type="text" id="add[email]" value="<?=$r[email]?>" size="35"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">剩余天数</td>
|
|
<td height="25"><input name=add[userdate] type=text id="add[userdate]" value='<?=$userdate?>' size="6">
|
|
天,到期后转向用户组:
|
|
<select name="add[zgroupid]" id="add[zgroupid]">
|
|
<option value="0">不设置</option>
|
|
<?=$zgroup?>
|
|
</select></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">点数</td>
|
|
<td height="25"><input name=add[userfen] type=text id="add[userfen]" value='<?=$r[userfen]?>' size="6">
|
|
点</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">帐户余额</td>
|
|
<td height="25"><input name=add[money] type=text id="add[money]" value='<?=$r[money]?>' size="6">
|
|
元 </td>
|
|
</tr>
|
|
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">所属管理组</td>
|
|
<td height="25">
|
|
<?php
|
|
if($r['agid'])
|
|
{
|
|
?>
|
|
组ID:<?=$r['agid']?>,组名称:<a href="#ecms" title="<?=$magadminname?>"><?=$magname?></a>
|
|
<?php
|
|
}
|
|
else
|
|
{
|
|
?>
|
|
----
|
|
<?php
|
|
}
|
|
?> </td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">注册时间</td>
|
|
<td height="25"><?=eReturnMemberRegtime($r['registertime'],"Y-m-d H:i:s")?></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">注册IP</td>
|
|
<td height="25"><?=$addr[regip]?>:<?=$addr[regipport]?></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">最后登录</td>
|
|
<td height="25">总登录次数:<?=$addr[loginnum]?>,时间:<?=date("Y-m-d H:i:s",$addr[lasttime])?>,登录IP:<?=$addr[lastip]?>:<?=$addr[lastipport]?></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF" class="header">
|
|
<td height="25" colspan="2">其他信息</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25" colspan="2">
|
|
<?php
|
|
@include($formfile);
|
|
?> </td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF" class="header">
|
|
<td height="25" colspan="2">会员空间设置</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">空间使用模板</td>
|
|
<td height="25"><select name="add[spacestyleid]" id="add[spacestyleid]">
|
|
<?=$spacestyle?>
|
|
</select> <input type="button" name="Submit32" value="管理空间模板" onclick="window.open('ListSpaceStyle.php<?=$ecms_hashur['whehref']?>');"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">空间名称</td>
|
|
<td height="25"><input name="add[spacename]" type="text" id="add[spacename]" value="<?=ehtmlspecialchars(stripSlashes($addr['spacename']))?>"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">空间公告</td>
|
|
<td height="25"><textarea name="add[spacegg]" cols="60" rows="6" id="add[spacegg]"><?=stripSlashes($addr['spacegg'])?></textarea></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25"> </td>
|
|
<td height="25"><input type="submit" name="Submit" value="修改"> <input type="reset" name="Submit2" value="重置"></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
<?php
|
|
db_close();
|
|
$empire=null;
|
|
?>
|