AddPage.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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,"userpage");
  20. $gid=(int)$_GET['gid'];
  21. if(!$gid)
  22. {
  23. $gid=GetDoTempGid();
  24. }
  25. $cid=ehtmlspecialchars($_GET['cid']);
  26. $enews=ehtmlspecialchars($_GET['enews']);
  27. $r[path]='../../page.html';
  28. $r['tempid']=0;
  29. $url="<a href=ListPage.php".$ecms_hashur['whehref'].">管理自定义页面</a>&nbsp;>&nbsp;增加自定义页面";
  30. //复制
  31. if($enews=="AddUserpage"&&$_GET['docopy'])
  32. {
  33. $id=(int)$_GET['id'];
  34. $r=$empire->fetch1("select id,title,path,pagetext,classid,pagetitle,pagekeywords,pagedescription,tempid from {$dbtbpre}enewspage where id='$id'");
  35. $url="<a href=ListPage.php".$ecms_hashur['whehref'].">管理自定义页面</a>&nbsp;>&nbsp;复制自定义页面:<b>".$r[title]."</b>";
  36. }
  37. //修改
  38. if($enews=="EditUserpage")
  39. {
  40. $id=(int)$_GET['id'];
  41. $r=$empire->fetch1("select id,title,path,pagetext,classid,pagetitle,pagekeywords,pagedescription,tempid from {$dbtbpre}enewspage where id='$id'");
  42. $url="<a href=ListPage.php".$ecms_hashur['whehref'].">管理自定义页面</a>&nbsp;>&nbsp;修改自定义页面:<b>".$r[title]."</b>";
  43. }
  44. //模式
  45. $pagemod=1;
  46. if($r['tempid'])
  47. {
  48. $pagemod=2;
  49. }
  50. if($_GET['ChangePagemod'])
  51. {
  52. $pagemod=(int)$_GET['ChangePagemod'];
  53. }
  54. //分类
  55. $cstr="";
  56. $csql=$empire->query("select classid,classname from {$dbtbpre}enewspageclass order by classid");
  57. while($cr=$empire->fetch($csql))
  58. {
  59. $select="";
  60. if($cr[classid]==$r[classid])
  61. {
  62. $select=" selected";
  63. }
  64. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  65. }
  66. if($pagemod==2)
  67. {
  68. //模板
  69. $pagetempsql=$empire->query("select tempid,tempname from ".GetTemptb("enewspagetemp")." order by tempid");
  70. while($pagetempr=$empire->fetch($pagetempsql))
  71. {
  72. $select="";
  73. if($r[tempid]==$pagetempr[tempid])
  74. {
  75. $select=" selected";
  76. }
  77. $pagetemp.="<option value='".$pagetempr[tempid]."'".$select.">".$pagetempr[tempname]."</option>";
  78. }
  79. }
  80. ?>
  81. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  82. <html>
  83. <head>
  84. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  85. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  86. <title>增加用户自定义页面</title>
  87. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  88. <script>
  89. function ReturnHtml(html)
  90. {
  91. document.form1.pagetext.value=html;
  92. }
  93. </script>
  94. <SCRIPT lanuage="JScript">
  95. <!--
  96. function tempturnit(ss)
  97. {
  98. if (ss.style.display=="")
  99. ss.style.display="none";
  100. else
  101. ss.style.display="";
  102. }
  103. -->
  104. </SCRIPT>
  105. </head>
  106. <body>
  107. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  108. <tr>
  109. <td height="25">位置:<?=$url?></td>
  110. </tr>
  111. </table>
  112. <br>
  113. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  114. <form name="form1" method="post" action="../ecmscom.php">
  115. <?=$ecms_hashur['form']?>
  116. <tr class="header">
  117. <td height="25" colspan="2">增加用户自定义页面
  118. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="id" type="hidden" id="id" value="<?=$id?>">
  119. <input name="oldpath" type="hidden" id="oldpath" value="<?=$r[path]?>">
  120. <input name="cid" type="hidden" id="cid" value="<?=$cid?>"> <input name="gid" type="hidden" id="gid" value="<?=$gid?>"></td>
  121. </tr>
  122. <tr bgcolor="#FFFFFF">
  123. <td height="25">页面模式:</td>
  124. <td height="25"><input type="radio" name="pagemod" value="1" onclick="self.location.href='AddPage.php?enews=<?=$enews?>&id=<?=$id?>&cid=<?=$cid?>&docopy=<?=RepPostStr($_GET['docopy'],1)?>&gid=<?=$gid?>&ChangePagemod=1<?=$ecms_hashur['ehref']?>';"<?=$pagemod==1?' checked':''?>>
  125. 直接页面式
  126. <input type="radio" name="pagemod" value="2" onclick="self.location.href='AddPage.php?enews=<?=$enews?>&id=<?=$id?>&cid=<?=$cid?>&docopy=<?=RepPostStr($_GET['docopy'],1)?>&gid=<?=$gid?>&ChangePagemod=2<?=$ecms_hashur['ehref']?>';"<?=$pagemod==2?' checked':''?>>
  127. 采用模板式</td>
  128. </tr>
  129. <tr bgcolor="#FFFFFF">
  130. <td width="19%" height="25">页面名称(*)</td>
  131. <td width="81%" height="25"> <input name="title" type="text" id="title" value="<?=$r[title]?>" size="42">
  132. <font color="#666666">(如:联系我们)</font></td>
  133. </tr>
  134. <tr bgcolor="#FFFFFF">
  135. <td height="25">文件名(*)</td>
  136. <td height="25"><input name="path" type="text" id="path" value="<?=$r[path]?>" size="42">
  137. <input type="button" name="Submit4" value="选择目录" onclick="window.open('../file/ChangePath.php?returnform=opener.document.form1.path.value<?=$ecms_hashur['ehref']?>','','width=400,height=500,scrollbars=yes');">
  138. <font color="#666666">(如:../../about.html,放于根目录)</font></td>
  139. </tr>
  140. <tr bgcolor="#FFFFFF">
  141. <td height="25">所属分类</td>
  142. <td height="25"><select name="classid" id="classid">
  143. <option value="0">不隶属于任何类别</option>
  144. <?=$cstr?>
  145. </select> <input type="button" name="Submit6222322" value="管理分类" onclick="window.open('PageClass.php<?=$ecms_hashur['whehref']?>');"></td>
  146. </tr>
  147. <?php
  148. if($pagemod==2)
  149. {
  150. ?>
  151. <tr bgcolor="#FFFFFF">
  152. <td height="25">使用的模板</td>
  153. <td height="25"><select name="tempid" id="tempid">
  154. <?=$pagetemp?>
  155. </select>
  156. <input type="button" name="Submit62223" value="管理自定义页面模板" onclick="window.open('../template/ListPagetemp.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>');"></td>
  157. </tr>
  158. <?php
  159. }
  160. ?>
  161. <tr bgcolor="#FFFFFF">
  162. <td height="25">网页标题</td>
  163. <td height="25"><input name="pagetitle" type="text" id="pagetitle" value="<?=ehtmlspecialchars(stripSlashes($r[pagetitle]))?>" size="42"></td>
  164. </tr>
  165. <tr bgcolor="#FFFFFF">
  166. <td height="25">网页关键词</td>
  167. <td height="25"><input name="pagekeywords" type="text" id="pagekeywords" value="<?=ehtmlspecialchars(stripSlashes($r[pagekeywords]))?>" size="42"></td>
  168. </tr>
  169. <tr bgcolor="#FFFFFF">
  170. <td height="25">网页描述</td>
  171. <td height="25"><input name="pagedescription" type="text" id="pagedescription" value="<?=ehtmlspecialchars(stripSlashes($r[pagedescription]))?>" size="42"></td>
  172. </tr>
  173. <?php
  174. if($pagemod==2)
  175. {
  176. //--------------------html编辑器
  177. include('../ecmseditor/eshoweditor.php');
  178. $loadeditorjs=ECMS_ShowEditorJS('../ecmseditor/infoeditor/');
  179. ?>
  180. <?=$loadeditorjs?>
  181. <tr bgcolor="#FFFFFF">
  182. <td height="25" valign="top"><strong>页面内容</strong>(*)</td>
  183. <td height="25"></td>
  184. </tr>
  185. <tr bgcolor="#FFFFFF">
  186. <td height="25" colspan="2" valign="top">
  187. <?=ECMS_ShowEditorVar('pagetext',stripSlashes($r[pagetext]),'Default','../ecmseditor/infoeditor/','300','100%')?>
  188. </td>
  189. </tr>
  190. <?php
  191. }
  192. else
  193. {
  194. ?>
  195. <tr bgcolor="#FFFFFF">
  196. <td height="25" valign="top"><strong>页面内容</strong>(*)</td>
  197. <td height="25">请将页面内容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.form1.pagetext.value);document.form1.pagetext.select()" title="点击复制模板内容"><strong>复制到Dreamweaver(推荐)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?getvar=opener.document.form1.pagetext.value&returnvar=opener.document.form1.pagetext.value&fun=ReturnHtml<?=$ecms_hashur['ehref']?>','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在线编辑</strong></a>进行可视化编辑</td>
  198. </tr>
  199. <tr bgcolor="#FFFFFF">
  200. <td height="25" colspan="2" valign="top"><div align="center">
  201. <textarea name="pagetext" cols="90" rows="27" id="pagetext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[pagetext]))?></textarea>
  202. </div></td>
  203. </tr>
  204. <?php
  205. }
  206. ?>
  207. <tr bgcolor="#FFFFFF">
  208. <td height="25">&nbsp;</td>
  209. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  210. </tr>
  211. </form>
  212. <?php
  213. if($pagemod!=2)
  214. {
  215. ?>
  216. <tr bgcolor="#FFFFFF">
  217. <td height="25" colspan="2">&nbsp;&nbsp;[<a href="#ecms" onclick="tempturnit(showtempvar);">显示模板变量说明</a>]
  218. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('EnewsBq.php<?=$ecms_hashur['whehref']?>','','width=600,height=500,scrollbars=yes,resizable=yes');">查看模板标签语法</a>]
  219. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS调用地址</a>]
  220. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板变量</a>]
  221. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('ListBqtemp.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看标签模板</a>]</td>
  222. </tr>
  223. <tr bgcolor="#FFFFFF" id="showtempvar" style="display:none">
  224. <td height="25" colspan="2"><table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
  225. <tr bgcolor="#FFFFFF">
  226. <td width="33%" height="25"> <input name="textfield" type="text" value="[!--pagetitle--]">
  227. : 网页标题</td>
  228. <td width="34%"><input name="textfield2" type="text" value="[!--pagekeywords--]">
  229. : 网页关键词</td>
  230. <td width="33%"><input name="textfield3" type="text" value="[!--pagedescription--]">
  231. : 网页描述</td>
  232. </tr>
  233. <tr bgcolor="#FFFFFF">
  234. <td height="25"><input name="textfield322" type="text" value="[!--pagename--]">
  235. : 页面名称</td>
  236. <td><input name="textfield3222" type="text" value="[!--pageid--]">
  237. : 页面ID</td>
  238. <td><input name="textfield4" type="text" value="[!--news.url--]">
  239. : 网站地址</td>
  240. </tr>
  241. <tr bgcolor="#FFFFFF">
  242. <td height="25"><strong>支持公共模板变量</strong></td>
  243. <td><strong>支持所有模板标签</strong></td>
  244. <td>&nbsp;</td>
  245. </tr>
  246. </table></td>
  247. </tr>
  248. <?php
  249. }
  250. ?>
  251. </table>
  252. </body>
  253. </html>
  254. <?php
  255. db_close();
  256. $empire=null;
  257. ?>