AddSpaceStyle.php
4.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
define('EmpireCMSAdmin','1');
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../class/functions.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,"spacestyle");
$enews=ehtmlspecialchars($_GET['enews']);
$url="<a href='ListSpaceStyle.php".$ecms_hashur['whehref']."'>管理會員空間模板</a> -> 增加會員空間模板";
if($enews=="EditSpaceStyle")
{
$styleid=(int)$_GET['styleid'];
$r=$empire->fetch1("select * from {$dbtbpre}enewsspacestyle where styleid='$styleid'");
$url="<a href='ListSpaceStyle.php".$ecms_hashur['whehref']."'>管理會員空間模板</a> -> 修改會員空間模板:<b>".$r[stylename]."</b>";
}
//會員組
$line=5;//一行顯示五個
$i=0;
$mgsql=$empire->query("select groupid,groupname from {$dbtbpre}enewsmembergroup order by level");
while($level_r=$empire->fetch($mgsql))
{
$i++;
$br='';
if($i%$line==0)
{
$br='<br>';
}
if(strstr($r['membergroup'],','.$level_r['groupid'].','))
{$checked=" checked";}
else
{$checked="";}
$membergroup.="<input type='checkbox' name='membergroup[]' value='$level_r[groupid]'".$checked.">".$level_r[groupname]." ".$br;
}
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="0">
<tr>
<td height="25">位置:<?=$url?></td>
</tr>
</table>
<form name="form1" method="post" action="ListSpaceStyle.php">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<?=$ecms_hashur['form']?>
<tr class="header">
<td width="21%" height="25">增加會員空間模板</td>
<td width="79%" height="25"><input name="enews" type="hidden" id="enews" value="<?=$enews?>">
<input name="styleid" type="hidden" id="styleid" value="<?=$styleid?>"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">模板名稱</td>
<td height="25"> <input name="stylename" type="text" id="stylename" value="<?=$r[stylename]?>" size="30">
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">模板縮略圖</td>
<td height="25"> <input name="stylepic" type="text" id="stylepic" value="<?=$r[stylepic]?>" size="30">
<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>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">可選擇此模板的會員組<br>
<font color="#666666">(不選為不限制會員組)</font> </td>
<td height="25"><?=$membergroup?></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">模板目錄</td>
<td height="25"> e/space/template/
<input name="stylepath" type="text" id="stylepath" value="<?=$r[stylepath]?>" size="9">
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" valign="top"> <p>模板說明</p></td>
<td height="25"><textarea name="stylesay" cols="60" rows="5"><?=$r[stylesay]?></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>