123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- define('EmpireCMSAdmin','1');
- require("../../class/connect.php");
- require("../../class/db_sql.php");
- require("../../class/functions.php");
- $link=db_connect();
- $empire=new mysqlquery();
- $editor=1;
- //验证用户
- $lur=is_login();
- $logininid=$lur['userid'];
- $loginin=$lur['username'];
- $loginrnd=$lur['rnd'];
- $loginlevel=$lur['groupid'];
- $loginadminstyleid=$lur['adminstyleid'];
- //ehash
- $ecms_hashur=hReturnEcmsHashStrAll();
- $getvar=ehtmlspecialchars($_GET['getvar']);
- $returnvar=ehtmlspecialchars($_GET['returnvar']);
- $fun=ehtmlspecialchars($_GET['fun']);
- $notfullpage=ehtmlspecialchars($_GET['notfullpage']);
- db_close();
- $empire=null;
- include('../ecmseditor/eshoweditortemp.php');
- $loadeditorjs=ECMS_TempShowEditorJS('../ecmseditor/tempeditor/');
- ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
- <title>在线编辑模板</title>
- <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
- <?=$loadeditorjs?>
- <script>
- function eSetPageText(){
- var editor=CKEDITOR.instances.pagetext;
- var textvalue=<?=$getvar?>;
- editor.setData(textvalue);
- }
- function eGetPageText(){
- var editor=CKEDITOR.instances.pagetext;
- return editor.getData();
- }
- function SaveTemp(){
- var isok=confirm('确认要保存?');
- if(isok)
- {
- <?=$returnvar?>=eGetPageText();
- window.close();
- }
- return false;
- }
- </script>
- </head>
- <body leftmargin="0" topmargin="0">
- <table width="100%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
- <form name="edittemp" method="post" action="../enews.php" onsubmit="return SaveTemp()">
- <?=$ecms_hashur['eform']?>
- <tr class="header">
- <td width="82%">在线编辑模板<font color="#FF0000">(本地如果有装dreamweaver,推荐用dreamweaver编辑)</font></td>
- <td width="18%">
- <div align="right">
- <select name="notfullpage" onchange="self.location.href='editor.php?<?=$ecms_hashur['ehref']?>&getvar=<?=$getvar?>&returnvar=<?=$returnvar?>&fun=<?=$fun?>¬fullpage='+this.options[this.selectedIndex].value;">
- <option value='0'<?=$notfullpage==0?' selected':''?>>编辑整体页面(带body)</option>
- <option value='1'<?=$notfullpage==1?' selected':''?>>编辑局部内容(不带body)</option>
- </select>
- </div></td>
- </tr>
- <tr>
- <td colspan="2" bgcolor="#FFFFFF"> <div align="center">
- <input type="button" name="Submit" value=" 保存内容 " onclick="return SaveTemp()">
- </div></td>
- </tr>
- <tr>
- <td colspan="2" bgcolor="#FFFFFF"><div align="center">
- <?=ECMS_TempShowEditorVar('pagetext','','','','480','100%',$notfullpage?0:1)?>
- </div></td>
- </tr>
- <tr>
- <td colspan="2" bgcolor="#FFFFFF"> <div align="center">
- <input type="button" name="Submit2" value=" 保存内容 " onclick="return SaveTemp()">
- </div></td>
- </tr>
- <tr>
- <td colspan="2" bgcolor="#FFFFFF"> [<a href="#ecms" onclick="window.open('EnewsBq.php<?=$ecms_hashur['whehref']?>','','width=600,height=500,scrollbars=yes,resizable=yes');">查看模板标签语法</a>]
- [<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS调用地址</a>]
- [<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板变量</a>]
- [<a href="#ecms" onclick="window.open('ListBqtemp.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看标签模板</a>]</td>
- </tr>
- </form>
- </table>
- <script>
- eSetPageText();
- </script>
- </body>
- </html>
|