AddUser.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"user");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $url="<a href=ListUser.php".$ecms_hashur['whehref'].">管理用户</a>&nbsp;>增加用户";
  22. if($enews=="EditUser")
  23. {
  24. $userid=(int)$_GET['userid'];
  25. $r=$empire->fetch1("select username,adminclass,groupid,checked,styleid,filelevel,truename,email,classid,wname,tel,wxno,qq from {$dbtbpre}enewsuser where userid='$userid'");
  26. $addur=$empire->fetch1("select equestion,openip from {$dbtbpre}enewsuseradd where userid='$userid'");
  27. $url="<a href=ListUser.php".$ecms_hashur['whehref'].">管理用户</a>&nbsp;>修改用户:<b>".$r[username]."</b>";
  28. if($r[checked])
  29. {$checked=" checked";}
  30. }
  31. //-----------用户组
  32. $sql=$empire->query("select groupid,groupname from {$dbtbpre}enewsgroup order by groupid desc");
  33. while($gr=$empire->fetch($sql))
  34. {
  35. if($r[groupid]==$gr[groupid])
  36. {$select=" selected";}
  37. else
  38. {$select="";}
  39. $group.="<option value=".$gr[groupid].$select.">".$gr[groupname]."</option>";
  40. }
  41. //-----------后台样式
  42. $stylesql=$empire->query("select styleid,stylename,path from {$dbtbpre}enewsadminstyle order by styleid");
  43. $style="";
  44. while($styler=$empire->fetch($stylesql))
  45. {
  46. if($r[styleid]==$styler[styleid])
  47. {$sselect=" selected";}
  48. else
  49. {$sselect="";}
  50. $style.="<option value=".$styler[styleid].$sselect.">".$styler[stylename]."</option>";
  51. }
  52. //-----------部门
  53. $userclasssql=$empire->query("select classid,classname from {$dbtbpre}enewsuserclass order by classid");
  54. $userclass='';
  55. while($ucr=$empire->fetch($userclasssql))
  56. {
  57. if($r[classid]==$ucr[classid])
  58. {$select=" selected";}
  59. else
  60. {$select="";}
  61. $userclass.="<option value='$ucr[classid]'".$select.">".$ucr[classname]."</option>";
  62. }
  63. //--------------------操作的栏目
  64. $fcfile="../../data/fc/ListEnews.php";
  65. $fcjsfile="../../data/fc/cmsclass.js";
  66. if(file_exists($fcjsfile)&&file_exists($fcfile))
  67. {
  68. $class=GetFcfiletext($fcjsfile);
  69. $acr=explode("|",$r[adminclass]);
  70. $count=count($acr);
  71. for($i=1;$i<$count-1;$i++)
  72. {
  73. $class=str_replace("<option value='$acr[$i]'","<option value='$acr[$i]' selected",$class);
  74. }
  75. }
  76. else
  77. {
  78. $class=ShowClass_AddClass($r[adminclass],"n",0,"|-",0,3);
  79. }
  80. ?>
  81. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  82. <html>
  83. <head>
  84. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  85. <title>增加用户 </title>
  86. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  87. <script>
  88. function selectalls(doselect,formvar)
  89. {
  90. var bool=doselect==1?true:false;
  91. var selectform=document.getElementById(formvar);
  92. for(var i=0;i<selectform.length;i++)
  93. {
  94. selectform.all[i].selected=bool;
  95. }
  96. }
  97. </script>
  98. </head>
  99. <body>
  100. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  101. <tr>
  102. <td>位置:<?=$url?></td>
  103. </tr>
  104. </table>
  105. <form name="form1" method="post" action="ListUser.php" autocomplete="off">
  106. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  107. <?=$ecms_hashur['form']?>
  108. <tr class="header">
  109. <td height="25" colspan="2">增加用户
  110. <input name="userid" type="hidden" id="userid" value="<?=$userid?>"> <input name="oldusername" type="hidden" id="oldusername" value="<?=$r[username]?>">
  111. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="oldadminclass" type="hidden" id="oldadminclass" value="<?=$r[adminclass]?>"></td>
  112. </tr>
  113. <tr bgcolor="#FFFFFF">
  114. <td width="22%" height="25">用户名:</td>
  115. <td width="78%" height="25"><input name="username" type="text" id="username" value="<?=$r[username]?>" size="32">
  116. *</td>
  117. </tr>
  118. <tr bgcolor="#FFFFFF">
  119. <td height="25">是否禁止:</td>
  120. <td height="25"><input name="checked" type="checkbox" id="checked" value="1"<?=$checked?>>
  121. 是</td>
  122. </tr>
  123. <tr bgcolor="#FFFFFF">
  124. <td height="25">密码:</td>
  125. <td height="25"><input name="password" type="password" id="password" size="32">
  126. * <font color="#666666">(不想修改请留空)</font></td>
  127. </tr>
  128. <tr bgcolor="#FFFFFF">
  129. <td height="25">重复密码:</td>
  130. <td height="25"><input name="repassword" type="password" id="repassword" size="32">
  131. * <font color="#666666">(不想修改请留空)</font></td>
  132. </tr>
  133. <tr bgcolor="#FFFFFF">
  134. <td height="25">&nbsp;</td>
  135. <td height="25"><font color="#666666">(说明:密码设置6位以上,区分大小写,且密码不能包含:$
  136. &amp; * # &lt; &gt; ' &quot; / \ % ; 空格)</font></td>
  137. </tr>
  138. <tr bgcolor="#FFFFFF">
  139. <td height="25">安全提问:</td>
  140. <td height="25"> <select name="equestion" id="equestion">
  141. <option value="0"<?=$addur[equestion]==0?' selected':''?>>无安全提问</option>
  142. <option value="1"<?=$addur[equestion]==1?' selected':''?>>母亲的名字</option>
  143. <option value="2"<?=$addur[equestion]==2?' selected':''?>>爷爷的名字</option>
  144. <option value="3"<?=$addur[equestion]==3?' selected':''?>>父亲出生的城市</option>
  145. <option value="4"<?=$addur[equestion]==4?' selected':''?>>您其中一位老师的名字</option>
  146. <option value="5"<?=$addur[equestion]==5?' selected':''?>>您个人计算机的型号</option>
  147. <option value="6"<?=$addur[equestion]==6?' selected':''?>>您最喜欢的餐馆名称</option>
  148. <option value="7"<?=$addur[equestion]==7?' selected':''?>>驾驶执照的最后四位数字</option>
  149. </select> <font color="#666666">
  150. <input name="oldequestion" type="hidden" id="oldequestion" value="<?=$addur[equestion]?>">
  151. (如果启用安全提问,登录时需填入相应的项目才能登录)</font></td>
  152. </tr>
  153. <tr bgcolor="#FFFFFF">
  154. <td height="25">安全回答:</td>
  155. <td height="25"><input name="eanswer" type="text" id="eanswer" size="32">
  156. <font color="#666666">(如果修改答案,请在此输入新答案。区分大小写)</font></td>
  157. </tr>
  158. <tr bgcolor="#FFFFFF">
  159. <td height="25">姓名:</td>
  160. <td height="25"><input name="truename" type="text" id="truename" value="<?=$r[truename]?>" size="32"></td>
  161. </tr>
  162. <tr bgcolor="#FFFFFF">
  163. <td height="25">网名:</td>
  164. <td height="25"><input name="wname" type="text" id="wname" value="<?=$r[wname]?>" size="32">
  165. <font color="#666666">(信息操作反馈给会员将采用此名称,不填为显示“管理员”)</font></td>
  166. </tr>
  167. <tr bgcolor="#FFFFFF">
  168. <td height="25">邮箱:</td>
  169. <td height="25"><input name="email" type="text" id="email" value="<?=$r[email]?>" size="32"></td>
  170. </tr>
  171. <tr bgcolor="#FFFFFF">
  172. <td height="25">手机号:</td>
  173. <td height="25"><input name="tel" type="text" id="tel" value="<?=$r[tel]?>" size="32"></td>
  174. </tr>
  175. <tr bgcolor="#FFFFFF">
  176. <td height="25">QQ号码:</td>
  177. <td height="25"><input name="qq" type="text" id="qq" value="<?=$r[qq]?>" size="32"></td>
  178. </tr>
  179. <tr bgcolor="#FFFFFF">
  180. <td height="25">微信:</td>
  181. <td height="25"><input name="wxno" type="text" id="wxno" value="<?=$r[wxno]?>" size="32"></td>
  182. </tr>
  183. <tr bgcolor="#FFFFFF">
  184. <td height="25">用户组(*):</td>
  185. <td height="25"><select name="groupid" id="groupid">
  186. <?=$group?>
  187. </select> <input type="button" name="Submit62223222" value="管理用户组" onclick="window.open('ListGroup.php<?=$ecms_hashur['whehref']?>');">
  188. *</td>
  189. </tr>
  190. <tr bgcolor="#FFFFFF">
  191. <td height="25">所属部门:</td>
  192. <td height="25"><select name="classid" id="classid">
  193. <option value="0">未分配</option>
  194. <?=$userclass?>
  195. </select> <input type="button" name="Submit622232222" value="管理部门" onclick="window.open('UserClass.php<?=$ecms_hashur['whehref']?>');"></td>
  196. </tr>
  197. <tr bgcolor="#FFFFFF">
  198. <td height="25">后台样式(*):</td>
  199. <td height="25"><select name="styleid" id="styleid">
  200. <?=$style?>
  201. </select> <input type="button" name="Submit6222322" value="管理后台样式" onclick="window.open('../template/AdminStyle.php<?=$ecms_hashur['whehref']?>');">
  202. *</td>
  203. </tr>
  204. <tr bgcolor="#FFFFFF">
  205. <td rowspan="2" valign="top"> <p><strong>管理的栏目信息:</strong><br>
  206. <br>
  207. <input name="filelevel" type="checkbox" id="filelevel" value="1"<?=$r[filelevel]==1?' checked':''?>>
  208. 应用于附件权限<br>
  209. <br>
  210. (多个,请用ctrl。)</p></td>
  211. <td height="25" valign="top"> <select name="adminclass[]" size="12" multiple id="adminclassselect" style="width:270;">
  212. <?=$class?>
  213. </select>
  214. [<a href="#empirecms" onclick="selectalls(0,'adminclassselect')">全部取消</a>] </td>
  215. </tr>
  216. <tr bgcolor="#FFFFFF">
  217. <td height="25" valign="top"> 注意事项:<font color="#FF0000">选择父栏目会应用于子栏目,并且如果选择父栏目,请勿选择其子栏目</font>)</td>
  218. </tr>
  219. <tr bgcolor="#FFFFFF">
  220. <td height="25"><strong>允许登录后台的 IP 列表:</strong><br>
  221. 只有当管理员处于本列表中的 IP 地址时才可以登录后台,列表以外的地址访问将视为 IP 被禁止.每个 IP 一行,既可输入完整地址,也可只输入
  222. IP 开头,例如 &quot;192.168.&quot;(不含引号) 可匹配 192.168.0.0~192.168.255.255 范围内的所有地址,留空为不限</td>
  223. <td height="25"><textarea name="openip" cols="50" rows="8" id="openip"><?=$addur[openip]?></textarea></td>
  224. </tr>
  225. <tr bgcolor="#FFFFFF">
  226. <td height="25">&nbsp;</td>
  227. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  228. </tr>
  229. <tr bgcolor="#FFFFFF">
  230. <td height="25" colspan="2"><font color="#666666">说明:密码设置6位以上,区分大小写,且密码不能包含:$
  231. &amp; * # &lt; &gt; ' &quot; / \ % ; 空格</font></td>
  232. </tr>
  233. </table>
  234. </form>
  235. </body>
  236. </html>
  237. <?php
  238. db_close();
  239. $empire=null;
  240. ?>