EditDttemp.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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,"dttemp");
  20. //关闭
  21. if(!$ecms_config['esafe']['openeditdttemp'])
  22. {
  23. echo"没有开启在线修改动态页面模板";
  24. exit();
  25. }
  26. //取得动态模板内容
  27. function GetDtTempFiletext($tempid){
  28. global $empire,$dbtbpre;
  29. $tempid=(int)$tempid;
  30. if(!$tempid)
  31. {
  32. printerror('ErrorUrl','');
  33. }
  34. $tempr=$empire->fetch1("select * from {$dbtbpre}enewstempdt where tempid='$tempid'");
  35. if(!$tempr['tempid'])
  36. {
  37. printerror('ErrorUrl','');
  38. }
  39. $file=ECMS_PATH.$tempr['tempfile'];
  40. if(!file_exists($file))
  41. {
  42. printerror('FileNotExist','');
  43. }
  44. $tempr['temptext']=ReadFiletext($file);
  45. return $tempr;
  46. }
  47. //修改动态模板内容
  48. function EditDtTempFiletext($add,$userid,$username){
  49. global $empire,$dbtbpre;
  50. //操作权限
  51. CheckLevel($userid,$username,$classid,'dttemp');
  52. $tempid=(int)$add['tempid'];
  53. if(!$tempid)
  54. {
  55. printerror('ErrorUrl','');
  56. }
  57. $tempr=$empire->fetch1("select tempid,tempname,tempvar,tempfile from {$dbtbpre}enewstempdt where tempid='$tempid'");
  58. if(!$tempr['tempid'])
  59. {
  60. printerror('ErrorUrl','');
  61. }
  62. $file=ECMS_PATH.$tempr['tempfile'];
  63. if(!file_exists($file))
  64. {
  65. printerror('FileNotExist','');
  66. }
  67. $temptext=ClearAddsData($add['temptext']);
  68. WriteFiletext_n($file,$temptext);
  69. //操作日志
  70. insert_dolog("tempid=".$tempid."<br>tempname=".$tempr['tempname']);
  71. printerror("EditDttempSuccess","EditDttemp.php?tempid=$tempid".hReturnEcmsHashStrHref2(0));
  72. }
  73. //操作
  74. $enews=$_POST['enews'];
  75. if(empty($enews))
  76. {$enews=$_GET['enews'];}
  77. if($enews)
  78. {
  79. hCheckEcmsRHash();
  80. include("../../class/tempfun.php");
  81. }
  82. //增加模板
  83. if($enews=="EditDtTempFiletext")
  84. {
  85. EditDtTempFiletext($_POST,$logininid,$loginin);
  86. }
  87. else
  88. {}
  89. //修改
  90. $tempid=(int)$_GET['tempid'];
  91. $r=GetDtTempFiletext($tempid);
  92. $url="修改动态页面模板: ".$r['tempname'];
  93. db_close();
  94. $empire=null;
  95. ?>
  96. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  97. <html>
  98. <head>
  99. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  100. <title>修改动态页面模板</title>
  101. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  102. <script>
  103. function ReturnHtml(html)
  104. {
  105. document.form1.temptext.value=html;
  106. }
  107. </script>
  108. <SCRIPT lanuage="JScript">
  109. <!--
  110. function tempturnit(ss)
  111. {
  112. if (ss.style.display=="")
  113. ss.style.display="none";
  114. else
  115. ss.style.display="";
  116. }
  117. -->
  118. </SCRIPT>
  119. <script>
  120. function ReTempBak(){
  121. self.location.reload();
  122. }
  123. </script>
  124. </head>
  125. <body>
  126. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  127. <tr>
  128. <td height="25">位置:<?=$url?></td>
  129. </tr>
  130. </table>
  131. <br>
  132. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  133. <form name="form1" method="post" action="EditDttemp.php">
  134. <?=$ecms_hashur['form']?>
  135. <tr class="header">
  136. <td height="25" colspan="2">
  137. 修改动态页面模板
  138. <input name="enews" type="hidden" id="enews" value="EditDtTempFiletext"> <input name="tempid" type="hidden" id="tempid" value="<?=$tempid?>">
  139. </td>
  140. </tr>
  141. <tr bgcolor="#FFFFFF">
  142. <td width="19%" height="25">模板名称(*)</td>
  143. <td width="81%" height="25"> <input name="tempname" type="text" id="tempname" value="<?=$r[tempname]?>" size="30"> </td>
  144. </tr>
  145. <tr bgcolor="#FFFFFF">
  146. <td height="25">模板文件地址</td>
  147. <td height="25">/<?=$r[tempfile]?></td>
  148. </tr>
  149. <tr bgcolor="#FFFFFF">
  150. <td height="25"><strong>模板内容</strong>(*)</td>
  151. <td height="25">请将模板内容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.form1.temptext.value);document.form1.temptext.select()" title="点击复制模板内容"><strong>复制到Dreamweaver(推荐)</strong></a></td>
  152. </tr>
  153. <tr bgcolor="#FFFFFF">
  154. <td height="25" colspan="2"><div align="center">
  155. <textarea name="temptext" cols="90" rows="27" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars($r[temptext])?></textarea>
  156. </div></td>
  157. </tr>
  158. <tr bgcolor="#FFFFFF">
  159. <td height="25">&nbsp;</td>
  160. <td height="25"><input type="submit" name="Submit" value="保存模板"> &nbsp;<input type="reset" name="Submit2" value="重置"></td>
  161. </tr>
  162. </form>
  163. </table>
  164. </body>
  165. </html>