AdminStyle.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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,"adminstyle");
  20. //更新样式缓存
  21. function UpAdminstyle(){
  22. global $empire,$dbtbpre;
  23. $adminstyle=',';
  24. $sql=$empire->query("select path from {$dbtbpre}enewsadminstyle");
  25. while($r=$empire->fetch($sql))
  26. {
  27. $adminstyle.=$r['path'].',';
  28. }
  29. $empire->query("update {$dbtbpre}enewspublic set adminstyle='$adminstyle'");
  30. GetConfig();
  31. }
  32. //增加后台样式
  33. function AddAdminstyle($add,$userid,$username){
  34. global $empire,$dbtbpre;
  35. $path=RepPathStr($add['path']);
  36. $path=(int)$path;
  37. if(empty($path)||empty($add['stylename']))
  38. {
  39. printerror("EmptyAdminStyle","history.go(-1)");
  40. }
  41. //验证权限
  42. CheckLevel($userid,$username,$classid,"adminstyle");
  43. //目录是否存在
  44. if(!file_exists("../adminstyle/".$path))
  45. {
  46. printerror("EmptyAdminStylePath","history.go(-1)");
  47. }
  48. $add['stylename']=hRepPostStr($add['stylename'],1);
  49. $sql=$empire->query("insert into {$dbtbpre}enewsadminstyle(stylename,path,isdefault) values('$add[stylename]',$path,0);");
  50. if($sql)
  51. {
  52. UpAdminstyle();
  53. $styleid=$empire->lastid();
  54. //操作日志
  55. insert_dolog("styleid=$styleid&stylename=$add[stylename]");
  56. printerror("AddAdminStyleSuccess","AdminStyle.php".hReturnEcmsHashStrHref2(1));
  57. }
  58. else
  59. {
  60. printerror("DbError","history.go(-1)");
  61. }
  62. }
  63. //修改后台样式
  64. function EditAdminStyle($add,$userid,$username){
  65. global $empire,$dbtbpre;
  66. $styleid=(int)$add['styleid'];
  67. $path=RepPathStr($add['path']);
  68. $path=(int)$path;
  69. if(!$styleid||empty($path)||empty($add['stylename']))
  70. {
  71. printerror("EmptyAdminStyle","history.go(-1)");
  72. }
  73. //验证权限
  74. CheckLevel($userid,$username,$classid,"adminstyle");
  75. //目录是否存在
  76. if(!file_exists("../adminstyle/".$path))
  77. {
  78. printerror("EmptyAdminStylePath","history.go(-1)");
  79. }
  80. $add['stylename']=hRepPostStr($add['stylename'],1);
  81. $sql=$empire->query("update {$dbtbpre}enewsadminstyle set stylename='$add[stylename]',path=$path where styleid=$styleid");
  82. if($sql)
  83. {
  84. UpAdminstyle();
  85. //操作日志
  86. insert_dolog("styleid=$styleid&stylename=$add[stylename]");
  87. printerror("EditAdminStyleSuccess","AdminStyle.php".hReturnEcmsHashStrHref2(1));
  88. }
  89. else
  90. {
  91. printerror("DbError","history.go(-1)");
  92. }
  93. }
  94. //默认后台样式
  95. function DefAdminStyle($styleid,$userid,$username){
  96. global $empire,$dbtbpre;
  97. $styleid=(int)$styleid;
  98. if(!$styleid)
  99. {
  100. printerror("EmptyAdminStyleid","history.go(-1)");
  101. }
  102. //验证权限
  103. CheckLevel($userid,$username,$classid,"adminstyle");
  104. $r=$empire->fetch1("select stylename,path from {$dbtbpre}enewsadminstyle where styleid=$styleid");
  105. $usql=$empire->query("update {$dbtbpre}enewsadminstyle set isdefault=0");
  106. $sql=$empire->query("update {$dbtbpre}enewsadminstyle set isdefault=1 where styleid=$styleid");
  107. $upsql=$empire->query("update {$dbtbpre}enewspublic set defadminstyle='$r[path]' limit 1");
  108. if($sql)
  109. {
  110. GetConfig();
  111. //操作日志
  112. insert_dolog("styleid=$styleid&stylename=$r[stylename]");
  113. printerror("DefAdminStyleSuccess","AdminStyle.php".hReturnEcmsHashStrHref2(1));
  114. }
  115. else
  116. {
  117. printerror("DbError","history.go(-1)");
  118. }
  119. }
  120. //删除后台样式
  121. function DelAdminStyle($styleid,$userid,$username){
  122. global $empire,$dbtbpre;
  123. $styleid=(int)$styleid;
  124. if(!$styleid)
  125. {
  126. printerror("EmptyAdminStyleid","history.go(-1)");
  127. }
  128. //验证权限
  129. CheckLevel($userid,$username,$classid,"adminstyle");
  130. $r=$empire->fetch1("select stylename,path,isdefault from {$dbtbpre}enewsadminstyle where styleid=$styleid");
  131. if($r['isdefault'])
  132. {
  133. printerror("NotDelDefAdminStyle","history.go(-1)");
  134. }
  135. $sql=$empire->query("delete from {$dbtbpre}enewsadminstyle where styleid=$styleid");
  136. if($sql)
  137. {
  138. UpAdminstyle();
  139. //操作日志
  140. insert_dolog("styleid=$styleid&stylename=$r[stylename]");
  141. printerror("DelAdminStyleSuccess","AdminStyle.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. //增加后台样式
  156. if($enews=="AddAdminStyle")
  157. {
  158. AddAdminstyle($_POST,$logininid,$loginin);
  159. }
  160. //修改后台样式
  161. elseif($enews=="EditAdminStyle")
  162. {
  163. EditAdminStyle($_POST,$logininid,$loginin);
  164. }
  165. //默认后台样式
  166. elseif($enews=="DefAdminStyle")
  167. {
  168. DefAdminStyle($_GET['styleid'],$logininid,$loginin);
  169. }
  170. //删除后台样式
  171. elseif($enews=="DelAdminStyle")
  172. {
  173. DelAdminStyle($_GET['styleid'],$logininid,$loginin);
  174. }
  175. $sql=$empire->query("select styleid,stylename,path,isdefault from {$dbtbpre}enewsadminstyle order by styleid");
  176. ?>
  177. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  178. <html>
  179. <head>
  180. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  181. <title></title>
  182. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  183. </head>
  184. <body>
  185. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  186. <tr>
  187. <td><p>位置:<a href="AdminStyle.php<?=$ecms_hashur['whehref']?>">管理后台样式</a></p>
  188. </td>
  189. </tr>
  190. </table>
  191. <form name="form1" method="post" action="AdminStyle.php">
  192. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  193. <?=$ecms_hashur['form']?>
  194. <tr class="header">
  195. <td height="25">增加后台样式:
  196. <input name=enews type=hidden id="enews" value=AddAdminStyle>
  197. </td>
  198. </tr>
  199. <tr>
  200. <td height="25" bgcolor="#FFFFFF"> 样式名称:
  201. <input name="stylename" type="text" id="stylename">
  202. 样式目录:adminstyle/
  203. <input name="path" type="text" id="path" size="6">
  204. (请填写数字)
  205. <input type="submit" name="Submit" value="增加">
  206. <input type="reset" name="Submit2" value="重置"></td>
  207. </tr>
  208. </table>
  209. </form>
  210. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  211. <tr class="header">
  212. <td width="7%"><div align="center">ID</div></td>
  213. <td width="29%" height="25"><div align="center">样式名称</div></td>
  214. <td width="30%"><div align="center">样式目录</div></td>
  215. <td width="34%" height="25"><div align="center">操作</div></td>
  216. </tr>
  217. <?
  218. while($r=$empire->fetch($sql))
  219. {
  220. $bgcolor="#FFFFFF";
  221. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  222. if($r[isdefault])
  223. {
  224. $bgcolor="#DBEAF5";
  225. $movejs='';
  226. }
  227. ?>
  228. <form name=form2 method=post action=AdminStyle.php>
  229. <?=$ecms_hashur['form']?>
  230. <input type=hidden name=enews value=EditAdminStyle>
  231. <input type=hidden name=styleid value=<?=$r[styleid]?>>
  232. <tr bgcolor="<?=$bgcolor?>"<?=$movejs?>>
  233. <td><div align="center">
  234. <?=$r[styleid]?>
  235. </div></td>
  236. <td height="25"> <div align="center">
  237. <input name="stylename" type="text" id="stylename" value="<?=$r[stylename]?>">
  238. </div></td>
  239. <td><div align="center">adminstyle/
  240. <input name="path" type="text" id="path" value="<?=$r[path]?>" size="6">
  241. </div></td>
  242. <td height="25"><div align="center">
  243. <input type="button" name="Submit4" value="设为默认" onclick="self.location.href='AdminStyle.php?enews=DefAdminStyle&styleid=<?=$r[styleid]?><?=$ecms_hashur['href']?>';">
  244. &nbsp;
  245. <input type="submit" name="Submit3" value="修改">
  246. &nbsp;
  247. <input type="button" name="Submit4" value="删除" onclick="self.location.href='AdminStyle.php?enews=DelAdminStyle&styleid=<?=$r[styleid]?><?=$ecms_hashur['href']?>';">
  248. </div></td>
  249. </tr>
  250. </form>
  251. <?
  252. }
  253. db_close();
  254. $empire=null;
  255. ?>
  256. </table>
  257. </body>
  258. </html>