AddJstemp.php 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. $gname=CheckTempGroup($gid);
  22. $urlgname=$gname."&nbsp;>&nbsp;";
  23. $cid=ehtmlspecialchars($_GET['cid']);
  24. $enews=ehtmlspecialchars($_GET['enews']);
  25. $r[showdate]="[m-d]";
  26. $url=$urlgname."<a href=ListJstemp.php?gid=$gid".$ecms_hashur['ehref'].">管理JS模板</a>&nbsp;>&nbsp;增加JS模板";
  27. //复制
  28. if($enews=="AddJstemp"&&$_GET['docopy'])
  29. {
  30. $tempid=(int)$_GET['tempid'];
  31. $r=$empire->fetch1("select * from ".GetDoTemptb("enewsjstemp",$gid)." where tempid=$tempid");
  32. $url=$urlgname."<a href=ListJstemp.php?gid=$gid".$ecms_hashur['ehref'].">管理JS模板</a>&nbsp;>&nbsp;复制JS模板: ".$r[tempname];
  33. }
  34. //修改
  35. if($enews=="EditJstemp")
  36. {
  37. $tempid=(int)$_GET['tempid'];
  38. $r=$empire->fetch1("select * from ".GetDoTemptb("enewsjstemp",$gid)." where tempid=$tempid");
  39. $url=$urlgname."<a href=ListJstemp.php?gid=$gid".$ecms_hashur['ehref'].">管理JS模板</a>&nbsp;>&nbsp;修改JS模板: ".$r[tempname];
  40. }
  41. //系统模型
  42. $msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod where usemod=0 order by myorder,mid");
  43. while($mr=$empire->fetch($msql))
  44. {
  45. if($mr[mid]==$r[modid])
  46. {$select=" selected";}
  47. else
  48. {$select="";}
  49. $mod.="<option value=".$mr[mid].$select.">".$mr[mname]."</option>";
  50. }
  51. //分类
  52. $cstr="";
  53. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsjstempclass order by classid");
  54. while($cr=$empire->fetch($csql))
  55. {
  56. $select="";
  57. if($cr[classid]==$r[classid])
  58. {
  59. $select=" selected";
  60. }
  61. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  62. }
  63. db_close();
  64. $empire=null;
  65. ?>
  66. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  67. <html>
  68. <head>
  69. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  70. <title>增加JS模板</title>
  71. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  72. <SCRIPT lanuage="JScript">
  73. <!--
  74. function tempturnit(ss)
  75. {
  76. if (ss.style.display=="")
  77. ss.style.display="none";
  78. else
  79. ss.style.display="";
  80. }
  81. -->
  82. </SCRIPT>
  83. <script>
  84. function ReTempBak(){
  85. self.location.reload();
  86. }
  87. </script>
  88. </head>
  89. <body>
  90. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  91. <tr>
  92. <td height="25">位置:<?=$url?></td>
  93. </tr>
  94. </table>
  95. <br>
  96. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  97. <form name="form1" method="post" action="ListJstemp.php">
  98. <?=$ecms_hashur['form']?>
  99. <tr class="header">
  100. <td height="25" colspan="2">增加JS模板
  101. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="tempid" type="hidden" id="tempid" value="<?=$tempid?>">
  102. <input name="cid" type="hidden" id="cid" value="<?=$cid?>"> <input name="gid" type="hidden" id="gid" value="<?=$gid?>"></td>
  103. </tr>
  104. <tr bgcolor="#FFFFFF">
  105. <td width="19%" height="25">模板名称(*)</td>
  106. <td width="81%" height="25"> <input name="tempname" type="text" id="tempname" value="<?=$r[tempname]?>">
  107. </td>
  108. </tr>
  109. <tr bgcolor="#FFFFFF">
  110. <td height="25">所属系统模型(*)</td>
  111. <td height="25"><select name="modid" id="modid">
  112. <?=$mod?>
  113. </select> <input type="button" name="Submit6" value="管理系统模型" onclick="window.open('../db/ListTable.php<?=$ecms_hashur['whehref']?>');">
  114. </td>
  115. </tr>
  116. <tr bgcolor="#FFFFFF">
  117. <td height="25">所属分类</td>
  118. <td height="25"><select name="classid" id="classid">
  119. <option value="0">不隶属于任何类别</option>
  120. <?=$cstr?>
  121. </select> <input type="button" name="Submit6222322" value="管理分类" onclick="window.open('JsTempClass.php<?=$ecms_hashur['whehref']?>');"></td>
  122. </tr>
  123. <tr bgcolor="#FFFFFF">
  124. <td height="25">简介截取字数</td>
  125. <td height="25"><input name="subnews" type="text" id="subnews" value="<?=$r[subnews]?>" size="6">
  126. 个字节<font color="#666666">(0为不截取)</font></td>
  127. </tr>
  128. <tr bgcolor="#FFFFFF">
  129. <td height="25">标题截取字数</td>
  130. <td height="25"><input name="subtitle" type="text" id="subtitle" value="<?=$r[subtitle]?>" size="6">
  131. 个字节<font color="#666666">(0为不截取)</font></td>
  132. </tr>
  133. <tr bgcolor="#FFFFFF">
  134. <td height="25">时间显示格式</td>
  135. <td height="25"><input name="showdate" type="text" id="showdate" value="<?=$r[showdate]?>" size="20">
  136. <select name="select4" onchange="document.form1.showdate.value=this.value">
  137. <option value="Y-m-d H:i:s">选择</option>
  138. <option value="Y-m-d H:i:s">2005-01-27 11:04:27</option>
  139. <option value="Y-m-d">2005-01-27</option>
  140. <option value="m-d">01-27</option>
  141. </select></td>
  142. </tr>
  143. <tr bgcolor="#FFFFFF">
  144. <td height="25"><strong>模板内容</strong>(*)</td>
  145. <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>
  146. </tr>
  147. <tr bgcolor="#FFFFFF">
  148. <td height="25" colspan="2"><div align="center">
  149. <textarea name="temptext" cols="90" rows="18" id="temptext" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[temptext]))?></textarea>
  150. </div></td>
  151. </tr>
  152. <tr bgcolor="#FFFFFF">
  153. <td height="25">&nbsp;</td>
  154. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置">
  155. <?php
  156. if($enews=='EditJstemp')
  157. {
  158. ?>
  159. &nbsp;&nbsp;[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=jstemp&tempid=<?=$tempid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改记录</a>]
  160. <?php
  161. }
  162. ?>
  163. </td>
  164. </tr>
  165. </form>
  166. <tr bgcolor="#FFFFFF">
  167. <td height="25" colspan="2">&nbsp;&nbsp;[<a href="#ecms" onclick="tempturnit(showtempvar);">显示模板变量说明</a>]</td>
  168. </tr>
  169. <tr bgcolor="#FFFFFF" id="showtempvar" style="display:none">
  170. <td height="25" colspan="2">
  171. <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
  172. <tr bgcolor="#FFFFFF">
  173. <td width="33%" height="25"> <input name="textfield42" type="text" value="[!--id--]">
  174. :信息ID</td>
  175. <td width="34%"> <input name="textfield52" type="text" value="[!--titleurl--]">
  176. :标题链接</td>
  177. <td width="33%"> <input name="textfield62" type="text" value="[!--oldtitle--]">
  178. :标题ALT(不截取字符)</td>
  179. </tr>
  180. <tr bgcolor="#FFFFFF">
  181. <td height="25"><input name="textfield72" type="text" value="[!--classid--]">
  182. :栏目ID</td>
  183. <td><input name="textfield82" type="text" value="[!--class.name--]">
  184. :栏目名称(带链接)</td>
  185. <td><input name="textfield92" type="text" value="[!--this.classname--]">
  186. :栏目名称(不带链接)</td>
  187. </tr>
  188. <tr bgcolor="#FFFFFF">
  189. <td height="25"><input name="textfield10" type="text" value="[!--this.classlink--]">
  190. :栏目地址</td>
  191. <td><input name="textfield11" type="text" value="[!--news.url--]">
  192. :网站地址</td>
  193. <td><input name="textfield12" type="text" value="[!--no.num--]">
  194. :信息编号</td>
  195. </tr>
  196. <tr bgcolor="#FFFFFF">
  197. <td height="25"><input name="textfield13" type="text" value="[!--userid--]">
  198. :发布者ID</td>
  199. <td><input name="textfield14" type="text" value="[!--username--]">
  200. :发布者</td>
  201. <td><input name="textfield15" type="text" value="[!--userfen--]">
  202. :查看信息扣除点数</td>
  203. </tr>
  204. <tr bgcolor="#FFFFFF">
  205. <td height="25"><input name="textfield16" type="text" value="[!--onclick--]">
  206. :点击数</td>
  207. <td><input name="textfield17" type="text" value="[!--totaldown--]">
  208. :下载数</td>
  209. <td><input name="textfield18" type="text" value="[!--plnum--]">
  210. :评论数</td>
  211. </tr>
  212. <tr bgcolor="#FFFFFF">
  213. <td height="25"><input name="textfield19" type="text" value="[!--ttid--]">
  214. :标题分类ID</td>
  215. <td><input name="textfield192" type="text" value="[!--tt.name--]">
  216. :标题分类名称</td>
  217. <td><input name="textfield1922" type="text" value="[!--tt.url--]">
  218. :标题分类地址</td>
  219. </tr>
  220. <tr bgcolor="#FFFFFF">
  221. <td height="25"><strong>[!--字段名--]:数据表字段内容调用,点
  222. <input type="button" name="Submit3" value="这里" onclick="window.open('ShowVar.php?<?=$ecms_hashur['ehref']?>&modid='+document.form1.modid.value,'','width=300,height=520,scrollbars=yes');">
  223. 可查看</strong></td>
  224. <td>&nbsp;</td>
  225. <td>&nbsp;</td>
  226. </tr>
  227. </table></td>
  228. </tr>
  229. <tr bgcolor="#FFFFFF">
  230. <td height="25">模板格式:</td>
  231. <td height="25">列表头[!--empirenews.listtemp--]列表内容[!--empirenews.listtemp--]列表尾</td>
  232. </tr>
  233. </table>
  234. </body>
  235. </html>