editor.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. $getvar=ehtmlspecialchars($_GET['getvar']);
  19. $returnvar=ehtmlspecialchars($_GET['returnvar']);
  20. $fun=ehtmlspecialchars($_GET['fun']);
  21. $notfullpage=ehtmlspecialchars($_GET['notfullpage']);
  22. db_close();
  23. $empire=null;
  24. include('../ecmseditor/eshoweditortemp.php');
  25. $loadeditorjs=ECMS_TempShowEditorJS('../ecmseditor/tempeditor/');
  26. ?>
  27. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  28. <html>
  29. <head>
  30. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  31. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  32. <title>在线编辑模板</title>
  33. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  34. <?=$loadeditorjs?>
  35. <script>
  36. function eSetPageText(){
  37. var editor=CKEDITOR.instances.pagetext;
  38. var textvalue=<?=$getvar?>;
  39. editor.setData(textvalue);
  40. }
  41. function eGetPageText(){
  42. var editor=CKEDITOR.instances.pagetext;
  43. return editor.getData();
  44. }
  45. function SaveTemp(){
  46. var isok=confirm('确认要保存?');
  47. if(isok)
  48. {
  49. <?=$returnvar?>=eGetPageText();
  50. window.close();
  51. }
  52. return false;
  53. }
  54. </script>
  55. </head>
  56. <body leftmargin="0" topmargin="0">
  57. <table width="100%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
  58. <form name="edittemp" method="post" action="../enews.php" onsubmit="return SaveTemp()">
  59. <?=$ecms_hashur['eform']?>
  60. <tr class="header">
  61. <td width="82%">在线编辑模板<font color="#FF0000">(本地如果有装dreamweaver,推荐用dreamweaver编辑)</font></td>
  62. <td width="18%">
  63. <div align="right">
  64. <select name="notfullpage" onchange="self.location.href='editor.php?<?=$ecms_hashur['ehref']?>&getvar=<?=$getvar?>&returnvar=<?=$returnvar?>&fun=<?=$fun?>&notfullpage='+this.options[this.selectedIndex].value;">
  65. <option value='0'<?=$notfullpage==0?' selected':''?>>编辑整体页面(带body)</option>
  66. <option value='1'<?=$notfullpage==1?' selected':''?>>编辑局部内容(不带body)</option>
  67. </select>
  68. </div></td>
  69. </tr>
  70. <tr>
  71. <td colspan="2" bgcolor="#FFFFFF"> <div align="center">
  72. <input type="button" name="Submit" value=" 保存内容 " onclick="return SaveTemp()">
  73. </div></td>
  74. </tr>
  75. <tr>
  76. <td colspan="2" bgcolor="#FFFFFF"><div align="center">
  77. <?=ECMS_TempShowEditorVar('pagetext','','','','480','100%',$notfullpage?0:1)?>
  78. </div></td>
  79. </tr>
  80. <tr>
  81. <td colspan="2" bgcolor="#FFFFFF"> <div align="center">
  82. <input type="button" name="Submit2" value=" 保存内容 " onclick="return SaveTemp()">
  83. </div></td>
  84. </tr>
  85. <tr>
  86. <td colspan="2" bgcolor="#FFFFFF"> &nbsp;[<a href="#ecms" onclick="window.open('EnewsBq.php<?=$ecms_hashur['whehref']?>','','width=600,height=500,scrollbars=yes,resizable=yes');">查看模板标签语法</a>]
  87. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS调用地址</a>]
  88. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板变量</a>]
  89. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('ListBqtemp.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看标签模板</a>]</td>
  90. </tr>
  91. </form>
  92. </table>
  93. <script>
  94. eSetPageText();
  95. </script>
  96. </body>
  97. </html>