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.
99 lines
4.1 KiB
99 lines
4.1 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,"memberconnect");
|
|
$enews=ehtmlspecialchars($_GET['enews']);
|
|
$id=(int)$_GET['id'];
|
|
$r=$empire->fetch1("select * from {$dbtbpre}enewsmember_connect_app where id='$id'");
|
|
$url="外部接口 > <a href=MemberConnect.php".$ecms_hashur['whehref'].">管理外部登录接口</a> > 配置外部登录接口:<b>".$r[apptype]."</b>";
|
|
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">
|
|
</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"></div></td>
|
|
</tr>
|
|
</table>
|
|
<form name="setmemberconnectform" method="post" action="MemberConnect.php" enctype="multipart/form-data" autocomplete="off">
|
|
<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="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="id" type="hidden" id="id" value="<?=$id?>"> </td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25"><div align="right">接口类型:</div></td>
|
|
<td height="25">
|
|
<?=$r[apptype]?> </td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25"><div align="right">接口状态:</div></td>
|
|
<td height="25"><input type="radio" name="isclose" value="0"<?=$r[isclose]==0?' checked':''?>>
|
|
开启
|
|
<input type="radio" name="isclose" value="1"<?=$r[isclose]==1?' checked':''?>>
|
|
关闭</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td width="23%" height="25"><div align="right">接口名称:</div></td>
|
|
<td width="77%" height="25"><input name="appname" type="text" id="appname" value="<?=$r[appname]?>" size="35"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25"><div align="right">接口别名:</div></td>
|
|
<td height="25"><input name="qappname" type="text" id="qappname" value="<?=$r[qappname]?>" size="35"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25" valign="top"><div align="right">接口描述:</div></td>
|
|
<td height="25"><textarea name="appsay" cols="65" rows="6" id="appsay"><?=ehtmlspecialchars($r[appsay])?></textarea></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25"><div align="right">appid:</div></td>
|
|
<td height="25"><input name="appid" type="text" id="appid" value="<?=$r[appid]?>" size="35">
|
|
<font color="#666666">(申请的应用ID)</font></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25"><div align="right">appkey:</div></td>
|
|
<td height="25"><input name="appkey" type="text" id="appkey" value="<?=$r[appkey]?>" size="35">
|
|
<font color="#666666">(申请的应用密钥)</font></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25"><div align="right">显示排序:</div></td>
|
|
<td height="25"><input name=myorder type=text id="myorder" value='<?=$r[myorder]?>' size="35">
|
|
<font color="#666666">(值越小显示越前面)</font></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>
|
|
|