WapStyle.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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,"wap");
  20. //增加wap模板
  21. function AddWapStyle($add,$userid,$username){
  22. global $empire,$dbtbpre;
  23. $path=RepPathStr($add['path']);
  24. $path=(int)$path;
  25. if(empty($path)||empty($add['stylename']))
  26. {
  27. printerror("EmptyWapStyle","history.go(-1)");
  28. }
  29. //目录是否存在
  30. if(!file_exists("../../wap/template/".$path))
  31. {
  32. printerror("EmptyWapStylePath","history.go(-1)");
  33. }
  34. $add['stylename']=hRepPostStr($add['stylename'],1);
  35. $sql=$empire->query("insert into {$dbtbpre}enewswapstyle(stylename,path) values('$add[stylename]',$path);");
  36. if($sql)
  37. {
  38. $styleid=$empire->lastid();
  39. //操作日志
  40. insert_dolog("styleid=$styleid&stylename=$add[stylename]");
  41. printerror("AddWapStyleSuccess","WapStyle.php".hReturnEcmsHashStrHref2(1));
  42. }
  43. else
  44. {
  45. printerror("DbError","history.go(-1)");
  46. }
  47. }
  48. //修改wap模板
  49. function EditWapStyle($add,$userid,$username){
  50. global $empire,$dbtbpre;
  51. $styleid=(int)$add['styleid'];
  52. $path=RepPathStr($add['path']);
  53. $path=(int)$path;
  54. if(!$styleid||empty($path)||empty($add['stylename']))
  55. {
  56. printerror("EmptyWapStyle","history.go(-1)");
  57. }
  58. //目录是否存在
  59. if(!file_exists("../../wap/template/".$path))
  60. {
  61. printerror("EmptyWapStylePath","history.go(-1)");
  62. }
  63. $add['stylename']=hRepPostStr($add['stylename'],1);
  64. $sql=$empire->query("update {$dbtbpre}enewswapstyle set stylename='$add[stylename]',path=$path where styleid=$styleid");
  65. if($sql)
  66. {
  67. //操作日志
  68. insert_dolog("styleid=$styleid&stylename=$add[stylename]");
  69. printerror("EditWapStyleSuccess","WapStyle.php".hReturnEcmsHashStrHref2(1));
  70. }
  71. else
  72. {
  73. printerror("DbError","history.go(-1)");
  74. }
  75. }
  76. //删除wap模板
  77. function DelWapStyle($styleid,$userid,$username){
  78. global $empire,$dbtbpre,$public_r;
  79. $styleid=(int)$styleid;
  80. if(!$styleid)
  81. {
  82. printerror("EmptyWapStyleid","history.go(-1)");
  83. }
  84. $r=$empire->fetch1("select stylename,path from {$dbtbpre}enewswapstyle where styleid=$styleid");
  85. if($styleid==$public_r['wapdefstyle'])
  86. {
  87. printerror("NotDelDefWapStyle","history.go(-1)");
  88. }
  89. $sql=$empire->query("delete from {$dbtbpre}enewswapstyle where styleid=$styleid");
  90. if($sql)
  91. {
  92. //操作日志
  93. insert_dolog("styleid=$styleid&stylename=$r[stylename]");
  94. printerror("DelWapStyleSuccess","WapStyle.php".hReturnEcmsHashStrHref2(1));
  95. }
  96. else
  97. {
  98. printerror("DbError","history.go(-1)");
  99. }
  100. }
  101. $enews=$_POST['enews'];
  102. if(empty($enews))
  103. {$enews=$_GET['enews'];}
  104. if($enews)
  105. {
  106. hCheckEcmsRHash();
  107. }
  108. //增加wap模板
  109. if($enews=="AddWapStyle")
  110. {
  111. AddWapStyle($_POST,$logininid,$loginin);
  112. }
  113. //修改wap模板
  114. elseif($enews=="EditWapStyle")
  115. {
  116. EditWapStyle($_POST,$logininid,$loginin);
  117. }
  118. //删除wap模板
  119. elseif($enews=="DelWapStyle")
  120. {
  121. DelWapStyle($_GET['styleid'],$logininid,$loginin);
  122. }
  123. else
  124. {}
  125. $pr=$empire->fetch1("select wapdefstyle from {$dbtbpre}enewspublic limit 1");
  126. $sql=$empire->query("select styleid,stylename,path from {$dbtbpre}enewswapstyle order by styleid");
  127. ?>
  128. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  129. <html>
  130. <head>
  131. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  132. <title></title>
  133. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  134. </head>
  135. <body>
  136. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  137. <tr>
  138. <td><p>位置:<a href="WapStyle.php<?=$ecms_hashur['whehref']?>">管理WAP模板</a></p></td>
  139. <td><div align="right" class="emenubutton">
  140. <input type="button" name="Submit522" value="WAP设置" onclick="self.location.href='SetWap.php<?=$ecms_hashur['whehref']?>';">
  141. </div></td>
  142. </tr>
  143. </table>
  144. <form name="form1" method="post" action="WapStyle.php">
  145. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  146. <?=$ecms_hashur['form']?>
  147. <tr class="header">
  148. <td height="25">增加WAP模板:
  149. <input name=enews type=hidden id="enews" value=AddWapStyle>
  150. </td>
  151. </tr>
  152. <tr>
  153. <td height="25" bgcolor="#FFFFFF"> 模板名称:
  154. <input name="stylename" type="text" id="stylename">
  155. 模板目录:e/wap/template/
  156. <input name="path" type="text" id="path" size="6">
  157. (请填写数字)
  158. <input type="submit" name="Submit" value="增加">
  159. <input type="reset" name="Submit2" value="重置"></td>
  160. </tr>
  161. </table>
  162. </form>
  163. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  164. <tr class="header">
  165. <td width="7%"><div align="center">ID</div></td>
  166. <td width="29%" height="25"><div align="center">模板名称</div></td>
  167. <td width="30%"><div align="center">模板目录</div></td>
  168. <td width="34%" height="25"><div align="center">操作</div></td>
  169. </tr>
  170. <?
  171. while($r=$empire->fetch($sql))
  172. {
  173. $bgcolor="#FFFFFF";
  174. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  175. if($r[styleid]==$pr['wapdefstyle'])
  176. {
  177. $bgcolor="#DBEAF5";
  178. $movejs='';
  179. }
  180. ?>
  181. <form name=form2 method=post action=WapStyle.php>
  182. <?=$ecms_hashur['form']?>
  183. <input type=hidden name=enews value=EditWapStyle>
  184. <input type=hidden name=styleid value=<?=$r[styleid]?>>
  185. <tr bgcolor="<?=$bgcolor?>"<?=$movejs?>>
  186. <td><div align="center">
  187. <?=$r[styleid]?>
  188. </div></td>
  189. <td height="25"> <div align="center">
  190. <input name="stylename" type="text" id="stylename" value="<?=$r[stylename]?>">
  191. </div></td>
  192. <td><div align="center">e/wap/template/
  193. <input name="path" type="text" id="path" value="<?=$r[path]?>" size="6">
  194. </div></td>
  195. <td height="25"><div align="center">
  196. <input type="submit" name="Submit3" value="修改">
  197. &nbsp;
  198. <input type="button" name="Submit4" value="删除" onclick="if(confirm('确认要删除?')){self.location.href='WapStyle.php?enews=DelWapStyle&styleid=<?=$r[styleid]?><?=$ecms_hashur['href']?>';}">
  199. </div></td>
  200. </tr>
  201. </form>
  202. <?
  203. }
  204. db_close();
  205. $empire=null;
  206. ?>
  207. </table>
  208. </body>
  209. </html>