EditTempid.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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,"template");
  20. //修改模板ID
  21. function EditTempid($add,$userid,$username){
  22. global $empire,$dbtbpre;
  23. $gid=(int)$add['gid'];
  24. $tempid=(int)$add['tempid'];
  25. $newtempid=(int)$add['newtempid'];
  26. $redo=(int)$add['redo'];
  27. $tempno=(int)$add['tempno'];
  28. $temptb=eTnoGetTempTbname($tempno);
  29. if(!$gid||!$tempid||!$newtempid||!$temptb)
  30. {
  31. printerror("EmptyEditTempid","history.go(-1)");
  32. }
  33. //验证权限
  34. CheckLevel($userid,$username,$classid,"template");
  35. $temptbname=GetDoTemptb($temptb,$gid);
  36. if($tempno==7)
  37. {
  38. $tempidf='varid';
  39. $tempnamef='myvar';
  40. }
  41. else
  42. {
  43. $tempidf='tempid';
  44. $tempnamef='tempname';
  45. }
  46. $r=$empire->fetch1("select ".$tempnamef.",".$tempidf." from ".$temptbname." where ".$tempidf."='$tempid'");
  47. if(!$r[$tempidf])
  48. {
  49. printerror("EmptyEditTempid","history.go(-1)");
  50. }
  51. $newr=$empire->fetch1("select ".$tempnamef.",".$tempidf." from ".$temptbname." where ".$tempidf."='$newtempid'");
  52. //ID已存在
  53. $lastid=0;
  54. if($newr[$tempidf])
  55. {
  56. $lastr=$empire->fetch1("select ".$tempnamef.",".$tempidf." from ".$temptbname." order by ".$tempidf." desc limit 1");
  57. $lastid=$lastr[$tempidf]+1;
  58. $empire->query("update ".$temptbname." set ".$tempidf."='$lastid' where ".$tempidf."='$newtempid'");
  59. }
  60. $sql=$empire->query("update ".$temptbname." set ".$tempidf."='$newtempid' where ".$tempidf."='$tempid'");
  61. //对换
  62. if($newr[$tempidf]&&$redo==1&&$lastid)
  63. {
  64. $empire->query("update ".$temptbname." set ".$tempidf."='$tempid' where ".$tempidf."='$lastid'");
  65. }
  66. if($sql)
  67. {
  68. //操作日志
  69. insert_dolog("tb=$temptb&tempid=$tempid&tempname=".$r[$tempnamef]."&gid=$gid&newtempid=$newtempid&redo=$redo");
  70. printerror("EditTempidSuccess",EcmsGetReturnUrl());
  71. }
  72. else
  73. {
  74. printerror("DbError","history.go(-1)");
  75. }
  76. }
  77. //操作
  78. $enews=$_POST['enews'];
  79. if(empty($enews))
  80. {$enews=$_GET['enews'];}
  81. if($enews)
  82. {
  83. hCheckEcmsRHash();
  84. }
  85. //修改模板ID
  86. if($enews=="EditTempid")
  87. {
  88. EditTempid($_POST,$logininid,$loginin);
  89. }
  90. $gid=(int)$_GET['gid'];
  91. $tempid=(int)$_GET['tempid'];
  92. $tempno=(int)$_GET['tempno'];
  93. $tgtemps='';
  94. $tgsql=$empire->query("select gid,gname,isdefault from {$dbtbpre}enewstempgroup order by gid");
  95. while($tgr=$empire->fetch($tgsql))
  96. {
  97. $selected='';
  98. if($tgr['gid']==$gid)
  99. {
  100. $selected=' selected';
  101. }
  102. $tgtemps.="<option value='".$tgr['gid']."'".$selected.">".$tgr['gname']."</option>";
  103. }
  104. db_close();
  105. $empire=null;
  106. ?>
  107. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  108. <html>
  109. <head>
  110. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  111. <title>修改模板ID</title>
  112. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  113. <SCRIPT lanuage="JScript">
  114. <!--
  115. function tempturnit(ss)
  116. {
  117. if (ss.style.display=="")
  118. ss.style.display="none";
  119. else
  120. ss.style.display="";
  121. }
  122. -->
  123. </SCRIPT>
  124. <script>
  125. function ReTempBak(){
  126. self.location.reload();
  127. }
  128. function eCheckForm(obj){
  129. var ok;
  130. if(obj.gid.value==0)
  131. {
  132. alert('请选择模板组');
  133. obj.gid.focus();
  134. return false;
  135. }
  136. if(obj.tempno.value==0)
  137. {
  138. alert('请选择模板');
  139. obj.tempno.focus();
  140. return false;
  141. }
  142. if(obj.tempid.value==0)
  143. {
  144. alert('请填写原模板ID');
  145. obj.tempid.focus();
  146. return false;
  147. }
  148. if(obj.newtempid.value==0)
  149. {
  150. alert('请填写新模板ID');
  151. obj.newtempid.focus();
  152. return false;
  153. }
  154. ok=confirm("确认要修改?");
  155. if(ok)
  156. {
  157. return true;
  158. }
  159. else
  160. {
  161. return false;
  162. }
  163. }
  164. </script>
  165. </head>
  166. <body>
  167. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  168. <tr>
  169. <td height="25">位置:修改模板ID</td>
  170. </tr>
  171. </table>
  172. <br>
  173. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  174. <form name="form1" id="form1" method="post" action="EditTempid.php" onsubmit="return eCheckForm(document.form1);">
  175. <?=$ecms_hashur['form']?>
  176. <tr class="header">
  177. <td height="25" colspan="2">修改模板ID
  178. <input name="enews" type="hidden" id="enews" value="EditTempid">
  179. </td>
  180. </tr>
  181. <tr bgcolor="#FFFFFF">
  182. <td width="19%" height="25">模板组</td>
  183. <td width="81%" height="25"><select name="gid" id="gid">
  184. <option value="0">----------- 选择模板组 -----------</option>
  185. <?=$tgtemps?>
  186. </select>
  187. </td>
  188. </tr>
  189. <tr bgcolor="#FFFFFF">
  190. <td height="25">模板表</td>
  191. <td height="25">
  192. <select name="tempno">
  193. <option value="0">------------ 选择模板 ------------</option>
  194. <option value="1"<?=$tempno==1?' selected':''?>>标签模板(enewsbqtemp)</option>
  195. <option value="2"<?=$tempno==2?' selected':''?>>JS模板(enewsjstemp)</option>
  196. <option value="3"<?=$tempno==3?' selected':''?>>列表模板(enewslisttemp)</option>
  197. <option value="4"<?=$tempno==4?' selected':''?>>内容模板(enewsnewstemp)</option>
  198. <option value="6"<?=$tempno==6?' selected':''?>>搜索模板(enewssearchtemp)</option>
  199. <option value="7"<?=$tempno==7?' selected':''?>>公共模板变量(enewstempvar)</option>
  200. <option value="8"<?=$tempno==8?' selected':''?>>投票模板(enewsvotetemp)</option>
  201. <option value="9"<?=$tempno==9?' selected':''?>>封面模板(enewsclasstemp)</option>
  202. <option value="10"<?=$tempno==10?' selected':''?>>评论模板(enewspltemp)</option>
  203. <option value="11"<?=$tempno==11?' selected':''?>>打印模板(enewsprinttemp)</option>
  204. <option value="12"<?=$tempno==12?' selected':''?>>自定义页面模板(enewspagetemp)</option>
  205. </select>
  206. </td>
  207. </tr>
  208. <tr bgcolor="#FFFFFF">
  209. <td height="25">原模板ID</td>
  210. <td height="25"><input name="tempid" type="text" id="tempid" value="<?=$tempid?>" size="38"></td>
  211. </tr>
  212. <tr bgcolor="#FFFFFF">
  213. <td height="25">新模板ID</td>
  214. <td height="25"><input name="newtempid" type="text" id="newtempid" value="<?=$newtempid?>" size="38"></td>
  215. </tr>
  216. <tr bgcolor="#FFFFFF">
  217. <td height="25">新模板ID存在处理</td>
  218. <td height="25"><input name="redo" type="radio" value="0" checked>
  219. 将模板ID转为最新ID
  220. <input type="radio" name="redo" value="1">模板ID相互替换</td>
  221. </tr>
  222. <tr bgcolor="#FFFFFF">
  223. <td height="25">&nbsp;</td>
  224. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置">
  225. </td>
  226. </tr>
  227. </form>
  228. </table>
  229. </body>
  230. </html>