AddIndexpage.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. $gid=(int)$_GET['gid'];
  21. $enews=ehtmlspecialchars($_GET['enews']);
  22. $url="<a href=ListIndexpage.php?gid=$gid".$ecms_hashur['ehref'].">管理首页方案</a>&nbsp;>&nbsp;增加首页方案";
  23. //复制
  24. if($enews=="AddIndexpage"&&$_GET['docopy'])
  25. {
  26. $tempid=(int)$_GET['tempid'];
  27. $r=$empire->fetch1("select tempid,tempname,temptext from {$dbtbpre}enewsindexpage where tempid='$tempid'");
  28. $url="<a href=ListIndexpage.php?gid=$gid".$ecms_hashur['ehref'].">管理首页方案</a>&nbsp;>&nbsp;复制首页方案:<b>".$r[tempname]."</b>";
  29. }
  30. //修改
  31. if($enews=="EditIndexpage")
  32. {
  33. $tempid=(int)$_GET['tempid'];
  34. $r=$empire->fetch1("select tempid,tempname,temptext from {$dbtbpre}enewsindexpage where tempid='$tempid'");
  35. $url="<a href=ListIndexpage.php?gid=$gid".$ecms_hashur['ehref'].">管理首页方案</a>&nbsp;>&nbsp;修改首页方案:<b>".$r[tempname]."</b>";
  36. }
  37. db_close();
  38. $empire=null;
  39. ?>
  40. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  41. <html>
  42. <head>
  43. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  44. <title>增加首页方案</title>
  45. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  46. <SCRIPT lanuage="JScript">
  47. <!--
  48. function tempturnit(ss)
  49. {
  50. if (ss.style.display=="")
  51. ss.style.display="none";
  52. else
  53. ss.style.display="";
  54. }
  55. -->
  56. </SCRIPT>
  57. <script>
  58. function ReTempBak(){
  59. self.location.reload();
  60. }
  61. </script>
  62. </head>
  63. <body>
  64. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  65. <tr>
  66. <td height="25">位置:<?=$url?></td>
  67. </tr>
  68. </table>
  69. <br>
  70. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  71. <form name="form1" method="post" action="ListIndexpage.php">
  72. <?=$ecms_hashur['form']?>
  73. <tr class="header">
  74. <td height="25" colspan="2">增加首页方案 <input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  75. <input name="tempid" type="hidden" id="tempid" value="<?=$tempid?>"> <input name="gid" type="hidden" id="gid" value="<?=$gid?>">
  76. </td>
  77. </tr>
  78. <tr bgcolor="#FFFFFF">
  79. <td width="19%" height="25">方案名称</td>
  80. <td width="81%" height="25"> <input name="tempname" type="text" id="tempname" value="<?=$r[tempname]?>">
  81. </td>
  82. </tr>
  83. <tr bgcolor="#FFFFFF">
  84. <td height="25"><strong>模板内容</strong>(*)</td>
  85. <td height="25">请将模板内容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.form1.temptext.value);document.form1.temptext.select()" title="点击复制模板内容"><strong>复制到Dreamweaver(推荐)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?getvar=opener.document.form1.temptext.value&returnvar=opener.document.form1.temptext.value&fun=ReturnHtml&notfullpage=1<?=$ecms_hashur['ehref']?>','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在线编辑</strong></a>进行可视化编辑</td>
  86. </tr>
  87. <tr bgcolor="#FFFFFF">
  88. <td height="25" colspan="2"><div align="center">
  89. <textarea name="temptext" cols="90" rows="23" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[temptext]))?></textarea>
  90. </div></td>
  91. </tr>
  92. <tr bgcolor="#FFFFFF">
  93. <td height="25">&nbsp;</td>
  94. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置">
  95. <?php
  96. if($enews=='EditIndexpage')
  97. {
  98. ?>
  99. &nbsp;&nbsp;[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=indexpage&tempid=<?=$tempid?>&gid=1<?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改记录</a>]
  100. <?php
  101. }
  102. ?>
  103. </td>
  104. </tr>
  105. </form>
  106. <tr bgcolor="#FFFFFF">
  107. <td height="25" colspan="2">&nbsp;&nbsp;[<a href="#ecms" onclick="tempturnit(showtempvar);">显示模板变量说明</a>]
  108. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('EnewsBq.php<?=$ecms_hashur['whehref']?>','','width=600,height=500,scrollbars=yes,resizable=yes');">查看模板标签语法</a>]
  109. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS调用地址</a>]
  110. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板变量</a>]
  111. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('ListBqtemp.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看标签模板</a>]</td>
  112. </tr>
  113. <tr bgcolor="#FFFFFF" id="showtempvar" style="display:none">
  114. <td height="25" colspan="2"><strong>首页模板支持的变量说明</strong> <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
  115. <tr bgcolor="#FFFFFF">
  116. <td width="50%" height="25"> <input name="textfield" type="text" value="[!--pagetitle--]">
  117. :网站名称</td>
  118. <td width="50%"> <input name="textfield2" type="text" value="[!--news.url--]">
  119. :网站地址</td>
  120. <td width="50%"><input name="textfield923" type="text" value="[!--class.menu--]">
  121. :一级栏目导航</td>
  122. </tr>
  123. <tr bgcolor="#FFFFFF">
  124. <td height="25"><input name="textfield72" type="text" value="[!--pagekey--]">
  125. :页面关键字</td>
  126. <td><input name="textfield73" type="text" value="[!--pagedes--]">
  127. :页面描述</td>
  128. <td>&nbsp;</td>
  129. </tr>
  130. <tr bgcolor="#FFFFFF">
  131. <td height="25"><strong>支持公共模板变量</strong></td>
  132. <td><strong>支持所有模板标签</strong></td>
  133. <td>&nbsp;</td>
  134. </tr>
  135. </table></td>
  136. </tr>
  137. </table>
  138. </body>
  139. </html>