AddBqtemp.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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. $mid=ehtmlspecialchars($_GET['mid']);
  24. $cid=ehtmlspecialchars($_GET['cid']);
  25. $enews=ehtmlspecialchars($_GET['enews']);
  26. $r[subnews]=0;
  27. $r[rownum]=1;
  28. $r[showdate]="Y-m-d H:i:s";
  29. $url=$urlgname."<a href=ListBqtemp.php?gid=$gid".$ecms_hashur['ehref'].">管理标签模板</a>&nbsp;>&nbsp;增加标签模板";
  30. $autorownum=" checked";
  31. //复制
  32. if($enews=="AddBqtemp"&&$_GET['docopy'])
  33. {
  34. $tempid=(int)$_GET['tempid'];
  35. $r=$empire->fetch1("select * from ".GetDoTemptb("enewsbqtemp",$gid)." where tempid='$tempid'");
  36. $url=$urlgname."<a href=ListBqtemp.php?gid=$gid".$ecms_hashur['ehref'].">管理标签模板</a>&nbsp;>&nbsp;复制标签模板:".$r[tempname];
  37. }
  38. //修改
  39. if($enews=="EditBqtemp")
  40. {
  41. $tempid=(int)$_GET['tempid'];
  42. $r=$empire->fetch1("select * from ".GetDoTemptb("enewsbqtemp",$gid)." where tempid='$tempid'");
  43. $url=$urlgname."<a href=ListBqtemp.php?gid=$gid".$ecms_hashur['ehref'].">管理标签模板</a>&nbsp;>&nbsp;修改标签模板:".$r[tempname];
  44. }
  45. //系统模型
  46. $msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod where usemod=0 order by myorder,mid");
  47. while($mr=$empire->fetch($msql))
  48. {
  49. if($mr[mid]==$r[modid])
  50. {$select=" selected";}
  51. else
  52. {$select="";}
  53. $mod.="<option value=".$mr[mid].$select.">".$mr[mname]."</option>";
  54. }
  55. //分类
  56. $cstr="";
  57. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsbqtempclass order by classid");
  58. while($cr=$empire->fetch($csql))
  59. {
  60. $select="";
  61. if($cr[classid]==$r[classid])
  62. {
  63. $select=" selected";
  64. }
  65. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  66. }
  67. db_close();
  68. $empire=null;
  69. ?>
  70. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  71. <html>
  72. <head>
  73. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  74. <title>管理标签模板</title>
  75. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  76. <script>
  77. function ReturnHtml(html)
  78. {
  79. document.form1.temptext.value=html;
  80. }
  81. </script>
  82. <SCRIPT lanuage="JScript">
  83. <!--
  84. function tempturnit(ss)
  85. {
  86. if (ss.style.display=="")
  87. ss.style.display="none";
  88. else
  89. ss.style.display="";
  90. }
  91. -->
  92. </SCRIPT>
  93. <script>
  94. function ReTempBak(){
  95. self.location.reload();
  96. }
  97. </script>
  98. </head>
  99. <body>
  100. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  101. <tr>
  102. <td>位置:<?=$url?></td>
  103. </tr>
  104. </table>
  105. <br>
  106. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  107. <form name="form1" method="post" action="ListBqtemp.php">
  108. <?=$ecms_hashur['form']?>
  109. <tr class="header">
  110. <td height="25" colspan="3">增加标签模板
  111. <input type=hidden name=enews value="<?=$enews?>"> <input name="tempid" type="hidden" id="tempid" value="<?=$tempid?>">
  112. <input name="cid" type="hidden" id="cid" value="<?=$cid?>"> <input name="mid" type="hidden" id="mid" value="<?=$mid?>">
  113. <input name="gid" type="hidden" id="gid" value="<?=$gid?>"> </td>
  114. </tr>
  115. <tr bgcolor="#FFFFFF">
  116. <td width="22%" height="25">模板名(*)</td>
  117. <td height="25" colspan="2"><input name="tempname" type="text" id="tempname" value="<?=$r[tempname]?>" size="36">
  118. </td>
  119. </tr>
  120. <tr bgcolor="#FFFFFF">
  121. <td height="25">所属系统模型(*)</td>
  122. <td height="25" colspan="2"><select name="modid" id="modid">
  123. <?=$mod?>
  124. </select> <input type="button" name="Submit6" value="管理系统模型" onclick="window.open('../db/ListTable.php<?=$ecms_hashur['whehref']?>');">
  125. </td>
  126. </tr>
  127. <tr bgcolor="#FFFFFF">
  128. <td height="25">所属分类</td>
  129. <td height="25" colspan="2"><select name="classid" id="classid">
  130. <option value="0">不隶属于任何分类</option>
  131. <?=$cstr?>
  132. </select> <input type="button" name="Submit6222322" value="管理分类" onclick="window.open('BqtempClass.php<?=$ecms_hashur['whehref']?>');"></td>
  133. </tr>
  134. <tr bgcolor="#FFFFFF">
  135. <td height="25">简介截取字数</td>
  136. <td height="25" colspan="2"><input name="subnews" type="text" id="subnews" value="<?=$r[subnews]?>" size="6">
  137. 个字节<font color="#666666">(0为不截取)</font></td>
  138. </tr>
  139. <tr bgcolor="#FFFFFF">
  140. <td height="25">每次显示</td>
  141. <td height="25" colspan="2"><input name="rownum" type="text" id="rownum" value="<?=$r[rownum]?>" size="6">
  142. 条记录<font color="#666666">(
  143. <input name="autorownum" type="checkbox" id="autorownum" value="1"<?=$autorownum?>>
  144. 自动识别)</font></td>
  145. </tr>
  146. <tr bgcolor="#FFFFFF">
  147. <td height="25">时间显示格式</td>
  148. <td colspan="2"> <input name="showdate" type="text" id="showdate" value="<?=$r[showdate]?>" size="20">
  149. <select name="select4" onchange="document.form1.showdate.value=this.value">
  150. <option value="Y-m-d H:i:s">选择</option>
  151. <option value="Y-m-d H:i:s">2005-01-27 11:04:27</option>
  152. <option value="Y-m-d">2005-01-27</option>
  153. <option value="m-d">01-27</option>
  154. </select> </td>
  155. </tr>
  156. <tr bgcolor="#FFFFFF">
  157. <td height="25"><strong>页面模板内容</strong>(*)</td>
  158. <td colspan="2">请将模板内容<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?<?=$ecms_hashur['ehref']?>&getvar=opener.document.form1.temptext.value&returnvar=opener.document.form1.temptext.value&fun=ReturnHtml&notfullpage=1','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在线编辑</strong></a>进行可视化编辑</td>
  159. </tr>
  160. <tr bgcolor="#FFFFFF">
  161. <td height="25" colspan="3" valign="top"><div align="center">
  162. <textarea name="temptext" cols="90" rows="18" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[temptext]))?></textarea>
  163. </div></td>
  164. </tr>
  165. <tr bgcolor="#FFFFFF">
  166. <td height="25" valign="top"><strong>列表内容模板(list.var) </strong>(*)</td>
  167. <td width="64%" height="25">请将模板内容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.form1.listvar.value);document.form1.listvar.select()" title="点击复制模板内容"><strong>复制到Dreamweaver(推荐)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?<?=$ecms_hashur['ehref']?>&getvar=opener.document.form1.listvar.value&returnvar=opener.document.form1.listvar.value&fun=ReturnHtml&notfullpage=1','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在线编辑</strong></a>进行可视化编辑</td>
  168. <td width="14%"><div align="right">
  169. <input name="docode" type="checkbox" id="docode" value="1"<?=$r[docode]==1?' checked':''?>><a title="list.var使用程序代码">使用程序代码</a></div></td>
  170. </tr>
  171. <tr bgcolor="#FFFFFF">
  172. <td colspan="3" valign="top"> <div align="center">
  173. <textarea name="listvar" cols="90" rows="12" id="listvar" wrap="OFF" style="WIDTH: 100%"><?=ehtmlspecialchars(stripSlashes($r[listvar]))?></textarea>
  174. </div></td>
  175. </tr>
  176. <tr bgcolor="#FFFFFF">
  177. <td height="25">&nbsp;</td>
  178. <td height="25" colspan="2"><input type="submit" name="Submit" value="保存模板">
  179. &nbsp; <input type="reset" name="Submit2" value="重置">
  180. <?php
  181. if($enews=='EditBqtemp')
  182. {
  183. ?>
  184. &nbsp;&nbsp;[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=bqtemp&tempid=<?=$tempid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改记录</a>]
  185. <?php
  186. }
  187. ?>
  188. </td>
  189. </tr>
  190. </form>
  191. <tr bgcolor="#FFFFFF">
  192. <td height="25" colspan="3">&nbsp;&nbsp;[<a href="#ecms" onclick="tempturnit(showtempvar);">显示模板变量说明</a>]</td>
  193. </tr>
  194. <tr bgcolor="#FFFFFF" id="showtempvar" style="display:none">
  195. <td height="25" colspan="3"><strong>(1)、页面模板内容支持的变量</strong><br> <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
  196. <tr bgcolor="#FFFFFF">
  197. <td width="33%" height="25"> <input name="textfield" type="text" value="[!--the.classname--]">
  198. :栏目名称</td>
  199. <td width="34%"> <input name="textfield2" type="text" value="[!--the.classid--]">
  200. :栏目ID</td>
  201. <td width="33%"> <input name="textfield3" type="text" value="[!--the.classurl--]">
  202. :栏目链接</td>
  203. </tr>
  204. <tr bgcolor="#FFFFFF">
  205. <td height="25" colspan="3"><strong>内容变量: &lt;!--list.var编号--&gt;
  206. (如:&lt;!--list.var1--&gt;,&lt;!--list.var2--&gt;)</strong></td>
  207. </tr>
  208. </table>
  209. <br> <strong>(2)、列表内容模板(list.var)支持的变量</strong><br> <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
  210. <tr bgcolor="#FFFFFF">
  211. <td width="33%" height="25"> <input name="textfield4" type="text" value="[!--id--]">
  212. :信息ID</td>
  213. <td width="34%"> <input name="textfield5" type="text" value="[!--titleurl--]">
  214. :标题链接</td>
  215. <td width="33%"> <input name="textfield6" type="text" value="[!--oldtitle--]">
  216. :标题ALT(不截取字符)</td>
  217. </tr>
  218. <tr bgcolor="#FFFFFF">
  219. <td height="25"><input name="textfield7" type="text" value="[!--classid--]">
  220. :栏目ID</td>
  221. <td><input name="textfield8" type="text" value="[!--class.name--]">
  222. :栏目名称(带链接)</td>
  223. <td><input name="textfield9" type="text" value="[!--this.classname--]">
  224. :栏目名称(不带链接)</td>
  225. </tr>
  226. <tr bgcolor="#FFFFFF">
  227. <td height="25"><input name="textfield10" type="text" value="[!--this.classlink--]">
  228. :栏目地址</td>
  229. <td><input name="textfield11" type="text" value="[!--news.url--]">
  230. :网站地址</td>
  231. <td><input name="textfield12" type="text" value="[!--no.num--]">
  232. :信息编号</td>
  233. </tr>
  234. <tr bgcolor="#FFFFFF">
  235. <td height="25"><input name="textfield13" type="text" value="[!--userid--]">
  236. :发布者ID</td>
  237. <td><input name="textfield14" type="text" value="[!--username--]">
  238. :发布者</td>
  239. <td><input name="textfield15" type="text" value="[!--userfen--]">
  240. :查看信息扣除点数</td>
  241. </tr>
  242. <tr bgcolor="#FFFFFF">
  243. <td height="25"><input name="textfield16" type="text" value="[!--onclick--]">
  244. :点击数</td>
  245. <td><input name="textfield17" type="text" value="[!--totaldown--]">
  246. :下载数</td>
  247. <td><input name="textfield18" type="text" value="[!--plnum--]">
  248. :评论数</td>
  249. </tr>
  250. <tr bgcolor="#FFFFFF">
  251. <td height="25"><input name="textfield19" type="text" value="[!--ttid--]">
  252. :标题分类ID</td>
  253. <td><input name="textfield192" type="text" value="[!--tt.name--]">
  254. :标题分类名称</td>
  255. <td><input name="textfield1922" type="text" value="[!--tt.url--]">
  256. :标题分类地址</td>
  257. </tr>
  258. <tr bgcolor="#FFFFFF">
  259. <td height="25"><strong>[!--字段名--]:数据表字段内容调用,点
  260. <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');">
  261. 可查看</strong></td>
  262. <td>&nbsp;</td>
  263. <td>&nbsp;</td>
  264. </tr>
  265. </table></td>
  266. </tr>
  267. <tr bgcolor="#FFFFFF">
  268. <td height="80">增加说明</td>
  269. <td height="80" colspan="2"><strong>页面模板内容:</strong>列表头[!--empirenews.listtemp--]列表内容[!--empirenews.listtemp--]列表尾<br>
  270. 页面模板格式举列:&lt;table&gt;[!--empirenews.listtemp--]&lt;tr&gt;&lt;td&gt;&lt;!--list.var1--&gt;&lt;/td&gt;&lt;td&gt;&lt;!--list.var2--&gt;&lt;/td&gt;&lt;/tr&gt;[!--empirenews.listtemp--]&lt;/table&gt;<font color="#FF0000">(每次显示2条记录)</font><br>
  271. <strong>列表内容模板:</strong>即”页面模板内容”中”&lt;!--list.var*--&gt;”标签显示的内容.</td>
  272. </tr>
  273. </table>
  274. </body>
  275. </html>