AddPayfs.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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,"shoppayfs");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $url="<a href=ListPayfs.php".$ecms_hashur['whehref'].">管理支付方式</a>&nbsp;>&nbsp;增加支付方式";
  22. if($enews=="EditPayfs")
  23. {
  24. $payid=(int)$_GET['payid'];
  25. $r=$empire->fetch1("select * from {$dbtbpre}enewsshoppayfs where payid='$payid'");
  26. $url="<a href=ListPayfs.php".$ecms_hashur['whehref'].">管理支付方式</a>&nbsp;>&nbsp;修改支付方式:<b>".$r[payname]."</b>";
  27. if($r[userpay])
  28. {$userpay=" checked";}
  29. if($r[userfen])
  30. {$userfen=" checked";}
  31. }
  32. //--------------------html编辑器
  33. include('../ecmseditor/eshoweditor.php');
  34. $loadeditorjs=ECMS_ShowEditorJS('../ecmseditor/infoeditor/');
  35. db_close();
  36. $empire=null;
  37. ?>
  38. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  39. <html>
  40. <head>
  41. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  42. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  43. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  44. <title>支付方式</title>
  45. <?=$loadeditorjs?>
  46. <script>
  47. function on()
  48. {
  49. var f=document.add
  50. f.HTML.value=f.paysay.value;
  51. }
  52. function bs(){
  53. var f=document.add
  54. f.paysay.value=f.HTML.value;
  55. }
  56. function br(){
  57. if(!confirm("是否复位?")){return false;}
  58. document.add.title.select()
  59. }
  60. </script>
  61. </head>
  62. <body>
  63. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  64. <tr>
  65. <td>位置:<?=$url?></td>
  66. </tr>
  67. </table>
  68. <form name="add" method="post" action="ListPayfs.php">
  69. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  70. <?=$ecms_hashur['form']?>
  71. <tr class="header">
  72. <td width="21%" height="25">增加支付方式</td>
  73. <td width="79%" height="25"><input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  74. <input name="payid" type="hidden" id="payid" value="<?=$payid?>"></td>
  75. </tr>
  76. <tr bgcolor="#FFFFFF">
  77. <td height="25">方式名称:</td>
  78. <td height="25"><input name="payname" type="text" id="payname" value="<?=$r[payname]?>">
  79. (如:邮局汇款) </td>
  80. </tr>
  81. <tr bgcolor="#FFFFFF">
  82. <td height="25">&nbsp;</td>
  83. <td height="25"><input name="userpay" type="checkbox" id="userpay" value="1"<?=$userpay?>>
  84. <strong>直接划帐</strong>(非划帐请勿选择)</td>
  85. </tr>
  86. <tr bgcolor="#FFFFFF">
  87. <td height="25">&nbsp;</td>
  88. <td height="25"><input name="userfen" type="checkbox" id="userfen" value="1"<?=$userfen?>>
  89. <strong>点数购买</strong>(非点数购买请勿选择)</td>
  90. </tr>
  91. <tr bgcolor="#FFFFFF">
  92. <td height="25">在线支付地址:</td>
  93. <td height="25"><input name="payurl" type="text" id="payurl" value="<?=$r[payurl]?>" size="52">
  94. (在线支付/手机支付请填写)</td>
  95. </tr>
  96. <tr bgcolor="#FFFFFF">
  97. <td height="25" valign="top">详细说明:</td>
  98. <td height="25">
  99. <?=ECMS_ShowEditorVar('paysay',$r[paysay],'Default','../ecmseditor/infoeditor/')?> </td>
  100. </tr>
  101. <tr bgcolor="#FFFFFF">
  102. <td height="25">是否启用</td>
  103. <td height="25"><input type="radio" name="isclose" value="0"<?=$r[isclose]==0?' checked':''?>>
  104. 开启
  105. <input type="radio" name="isclose" value="1"<?=$r[isclose]==1?' checked':''?>>
  106. 关闭</td>
  107. </tr>
  108. <tr bgcolor="#FFFFFF">
  109. <td height="25">&nbsp;</td>
  110. <td height="25"> <input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  111. </tr>
  112. </table>
  113. </form>
  114. </body>
  115. </html>