AddSpaceStyle.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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,"spacestyle");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $url="<a href='ListSpaceStyle.php".$ecms_hashur['whehref']."'>管理会员空间模板</a>&nbsp;->&nbsp;增加会员空间模板";
  22. if($enews=="EditSpaceStyle")
  23. {
  24. $styleid=(int)$_GET['styleid'];
  25. $r=$empire->fetch1("select * from {$dbtbpre}enewsspacestyle where styleid='$styleid'");
  26. $url="<a href='ListSpaceStyle.php".$ecms_hashur['whehref']."'>管理会员空间模板</a>&nbsp;->&nbsp;修改会员空间模板:<b>".$r[stylename]."</b>";
  27. }
  28. //会员组
  29. $line=5;//一行显示五个
  30. $i=0;
  31. $mgsql=$empire->query("select groupid,groupname from {$dbtbpre}enewsmembergroup order by level");
  32. while($level_r=$empire->fetch($mgsql))
  33. {
  34. $i++;
  35. $br='';
  36. if($i%$line==0)
  37. {
  38. $br='<br>';
  39. }
  40. if(strstr($r['membergroup'],','.$level_r['groupid'].','))
  41. {$checked=" checked";}
  42. else
  43. {$checked="";}
  44. $membergroup.="<input type='checkbox' name='membergroup[]' value='$level_r[groupid]'".$checked.">".$level_r[groupname]."&nbsp;".$br;
  45. }
  46. db_close();
  47. $empire=null;
  48. ?>
  49. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  50. <html>
  51. <head>
  52. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  53. <title>会员空间模板</title>
  54. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  55. </head>
  56. <body>
  57. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
  58. <tr>
  59. <td height="25">位置:<?=$url?></td>
  60. </tr>
  61. </table>
  62. <form name="form1" method="post" action="ListSpaceStyle.php">
  63. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  64. <?=$ecms_hashur['form']?>
  65. <tr class="header">
  66. <td width="21%" height="25">增加会员空间模板</td>
  67. <td width="79%" height="25"><input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  68. <input name="styleid" type="hidden" id="styleid" value="<?=$styleid?>"></td>
  69. </tr>
  70. <tr bgcolor="#FFFFFF">
  71. <td height="25">模板名称</td>
  72. <td height="25"> <input name="stylename" type="text" id="stylename" value="<?=$r[stylename]?>" size="30">
  73. </td>
  74. </tr>
  75. <tr bgcolor="#FFFFFF">
  76. <td height="25">模板缩略图</td>
  77. <td height="25"> <input name="stylepic" type="text" id="stylepic" value="<?=$r[stylepic]?>" size="30">
  78. <a onclick="window.open('../ecmseditor/FileMain.php?modtype=5&type=1&classid=&doing=2&field=stylepic<?=$ecms_hashur['ehref']?>','','width=700,height=550,scrollbars=yes');" title="选择已上传的图片"><img src="../../data/images/changeimg.gif" width="22" height="22" border="0" align="absbottom"></a>
  79. </td>
  80. </tr>
  81. <tr bgcolor="#FFFFFF">
  82. <td height="25">可选择此模板的会员组<br>
  83. <font color="#666666">(不选为不限制会员组)</font> </td>
  84. <td height="25"><?=$membergroup?></td>
  85. </tr>
  86. <tr bgcolor="#FFFFFF">
  87. <td height="25">模板目录</td>
  88. <td height="25"> e/space/template/
  89. <input name="stylepath" type="text" id="stylepath" value="<?=$r[stylepath]?>" size="9">
  90. </td>
  91. </tr>
  92. <tr bgcolor="#FFFFFF">
  93. <td height="25" valign="top"> <p>模板说明</p></td>
  94. <td height="25"><textarea name="stylesay" cols="60" rows="5"><?=$r[stylesay]?></textarea>
  95. </td>
  96. </tr>
  97. <tr bgcolor="#FFFFFF">
  98. <td height="25">&nbsp;</td>
  99. <td height="25"> <input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  100. </tr>
  101. </table>
  102. </form>
  103. </body>
  104. </html>