ListSpaceStyle.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/fun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"spacestyle");
  21. //返回会员组
  22. function ReturnSpaceStyleMemberGroup($membergroup){
  23. $count=count($membergroup);
  24. if($count==0)
  25. {
  26. return '';
  27. }
  28. $mg='';
  29. for($i=0;$i<$count;$i++)
  30. {
  31. $mg.=intval($membergroup[$i]).',';
  32. }
  33. if($mg)
  34. {
  35. $mg=','.$mg;
  36. }
  37. return $mg;
  38. }
  39. //增加会员空间模板
  40. function AddSpaceStyle($add,$userid,$username){
  41. global $empire,$dbtbpre;
  42. if(empty($add[stylename])||empty($add[stylepath]))
  43. {
  44. printerror('EmptySpaceStyle','history.go(-1)');
  45. }
  46. $add[stylepath]=RepPathStr($add[stylepath]);
  47. $add['stylepath']=RepPostStr($add['stylepath'],1);
  48. //目录是否存在
  49. if(!file_exists("../../space/template/".$add[stylepath]))
  50. {
  51. printerror("EmptySpaceStylePath","history.go(-1)");
  52. }
  53. $add['stylename']=hRepPostStr($add['stylename'],1);
  54. $add['stylepic']=hRepPostStr($add['stylepic'],1);
  55. $add['stylesay']=hRepPostStr2($add['stylesay']);
  56. $add['stylepath']=hRepPostStr2($add['stylepath']);
  57. $mg=ReturnSpaceStyleMemberGroup($add['membergroup']);
  58. $sql=$empire->query("insert into {$dbtbpre}enewsspacestyle(stylename,stylepic,stylesay,stylepath,isdefault,membergroup) values('$add[stylename]','$add[stylepic]','$add[stylesay]','$add[stylepath]',0,'$mg');");
  59. if($sql)
  60. {
  61. $styleid=$empire->lastid();
  62. insert_dolog("styleid=$styleid&stylename=$add[stylename]");//操作日志
  63. printerror("AddSpaceStyleSuccess","AddSpaceStyle.php?enews=AddSpaceStyle".hReturnEcmsHashStrHref2(0));
  64. }
  65. else
  66. {
  67. printerror("DbError","history.go(-1)");
  68. }
  69. }
  70. //修改会员空间模板
  71. function EditSpaceStyle($add,$userid,$username){
  72. global $empire,$dbtbpre;
  73. $styleid=intval($add[styleid]);
  74. if(empty($add[stylename])||empty($add[stylepath])||!$styleid)
  75. {
  76. printerror('EmptySpaceStyle','history.go(-1)');
  77. }
  78. $add[stylepath]=RepPathStr($add[stylepath]);
  79. $add['stylepath']=RepPostStr($add['stylepath'],1);
  80. //目录是否存在
  81. if(!file_exists("../../space/template/".$add[stylepath]))
  82. {
  83. printerror("EmptySpaceStylePath","history.go(-1)");
  84. }
  85. $add['stylename']=hRepPostStr($add['stylename'],1);
  86. $add['stylepic']=hRepPostStr($add['stylepic'],1);
  87. $add['stylesay']=hRepPostStr2($add['stylesay']);
  88. $add['stylepath']=hRepPostStr2($add['stylepath']);
  89. $mg=ReturnSpaceStyleMemberGroup($add['membergroup']);
  90. $sql=$empire->query("update {$dbtbpre}enewsspacestyle set stylename='$add[stylename]',stylepic='$add[stylepic]',stylesay='$add[stylesay]',stylepath='$add[stylepath]',membergroup='$mg' where styleid='$styleid'");
  91. if($sql)
  92. {
  93. insert_dolog("styleid=$styleid&stylename=$add[stylename]");//操作日志
  94. printerror("EditSpaceStyleSuccess","ListSpaceStyle.php".hReturnEcmsHashStrHref2(1));
  95. }
  96. else
  97. {
  98. printerror("DbError","history.go(-1)");
  99. }
  100. }
  101. //删除会员空间模板
  102. function DelSpaceStyle($add,$userid,$username){
  103. global $empire,$dbtbpre;
  104. $styleid=intval($add[styleid]);
  105. if(!$styleid)
  106. {
  107. printerror('EmptySpaceStyleid','history.go(-1)');
  108. }
  109. $r=$empire->fetch1("select stylename,isdefault from {$dbtbpre}enewsspacestyle where styleid='$styleid'");
  110. if($r[isdefault])
  111. {
  112. printerror('NotDelDefSpaceStyle','history.go(-1)');
  113. }
  114. $sql=$empire->query("delete from {$dbtbpre}enewsspacestyle where styleid='$styleid'");
  115. if($sql)
  116. {
  117. insert_dolog("styleid=$styleid&stylename=$r[stylename]");//操作日志
  118. printerror("DelSpaceStyleSuccess","ListSpaceStyle.php".hReturnEcmsHashStrHref2(1));
  119. }
  120. else
  121. {
  122. printerror("DbError","history.go(-1)");
  123. }
  124. }
  125. //默认会员空间模板
  126. function DefSpaceStyle($add,$userid,$username){
  127. global $empire,$dbtbpre;
  128. $styleid=intval($add[styleid]);
  129. if(!$styleid)
  130. {
  131. printerror('EmptyDefSpaceStyleid','history.go(-1)');
  132. }
  133. $r=$empire->fetch1("select stylename from {$dbtbpre}enewsspacestyle where styleid='$styleid'");
  134. $usql=$empire->query("update {$dbtbpre}enewsspacestyle set isdefault=0");
  135. $sql=$empire->query("update {$dbtbpre}enewsspacestyle set isdefault=1 where styleid='$styleid'");
  136. $upsql=$empire->query("update {$dbtbpre}enewspublic set defspacestyleid='$styleid'");
  137. if($sql)
  138. {
  139. GetConfig();
  140. insert_dolog("styleid=$styleid&stylename=$r[stylename]");//操作日志
  141. printerror("DefSpaceStyleSuccess","ListSpaceStyle.php".hReturnEcmsHashStrHref2(1));
  142. }
  143. else
  144. {
  145. printerror("DbError","history.go(-1)");
  146. }
  147. }
  148. $enews=$_POST['enews'];
  149. if(empty($enews))
  150. {$enews=$_GET['enews'];}
  151. if($enews)
  152. {
  153. hCheckEcmsRHash();
  154. }
  155. if($enews=="AddSpaceStyle")
  156. {
  157. AddSpaceStyle($_POST,$logininid,$loginin);
  158. }
  159. elseif($enews=="EditSpaceStyle")
  160. {
  161. EditSpaceStyle($_POST,$logininid,$loginin);
  162. }
  163. elseif($enews=="DelSpaceStyle")
  164. {
  165. DelSpaceStyle($_GET,$logininid,$loginin);
  166. }
  167. elseif($enews=="DefSpaceStyle")
  168. {
  169. DefSpaceStyle($_GET,$logininid,$loginin);
  170. }
  171. $search=$ecms_hashur['ehref'];
  172. $page=(int)$_GET['page'];
  173. $page=RepPIntvar($page);
  174. $start=0;
  175. $line=16;//每页显示条数
  176. $page_line=25;//每页显示链接数
  177. $offset=$page*$line;//总偏移量
  178. $query="select * from {$dbtbpre}enewsspacestyle";
  179. $totalquery="select count(*) as total from {$dbtbpre}enewsspacestyle";
  180. $num=$empire->gettotal($totalquery);//取得总条数
  181. $query=$query." order by styleid desc limit $offset,$line";
  182. $sql=$empire->query($query);
  183. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  184. ?>
  185. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  186. <html>
  187. <head>
  188. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  189. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  190. <title>会员空间模板</title>
  191. </head>
  192. <body>
  193. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  194. <tr>
  195. <td width="50%" height="25">位置:<a href="ListSpaceStyle.php<?=$ecms_hashur['whehref']?>">管理会员空间模板</a></td>
  196. <td><div align="right" class="emenubutton">
  197. <input type="button" name="Submit5" value="增加会员空间模板" onclick="self.location.href='AddSpaceStyle.php?enews=AddSpaceStyle<?=$ecms_hashur['ehref']?>';">
  198. </div></td>
  199. </tr>
  200. </table>
  201. <br>
  202. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  203. <tr class="header">
  204. <td width="10%" height="25"> <div align="center">ID</div></td>
  205. <td width="56%" height="25"> <div align="center">模板名称</div></td>
  206. <td width="34%" height="25"> <div align="center">操作</div></td>
  207. </tr>
  208. <?php
  209. while($r=$empire->fetch($sql))
  210. {
  211. $color="#ffffff";
  212. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  213. if($r[isdefault])
  214. {
  215. $color="#DBEAF5";
  216. $movejs='';
  217. }
  218. ?>
  219. <tr bgcolor="<?=$color?>"<?=$movejs?>>
  220. <td height="25"> <div align="center">
  221. <?=$r[styleid]?>
  222. </div></td>
  223. <td height="25"> <div align="center">
  224. <?=$r[stylename]?>
  225. </div></td>
  226. <td height="25"> <div align="center">[<a href="ListSpaceStyle.php?enews=DefSpaceStyle&styleid=<?=$r[styleid]?><?=$ecms_hashur['href']?>">设为默认</a>] [<a href="AddSpaceStyle.php?enews=EditSpaceStyle&styleid=<?=$r[styleid]?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="ListSpaceStyle.php?enews=DelSpaceStyle&styleid=<?=$r[styleid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  227. </tr>
  228. <?
  229. }
  230. ?>
  231. <tr bgcolor="#FFFFFF">
  232. <td height="25" colspan="3">&nbsp;&nbsp;&nbsp;
  233. <?=$returnpage?>
  234. </td>
  235. </tr>
  236. </table>
  237. </body>
  238. </html>
  239. <?
  240. db_close();
  241. $empire=null;
  242. ?>