AddBq.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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,"bq");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $cid=ehtmlspecialchars($_GET['cid']);
  22. $url="<a href=ListBq.php".$ecms_hashur['whehref'].">管理标签</a>&nbsp;>&nbsp;增加标签";
  23. //修改标签
  24. if($enews=="EditBq")
  25. {
  26. $bqid=(int)$_GET['bqid'];
  27. $url="<a href=ListBq.php".$ecms_hashur['whehref'].">管理标签</a>&nbsp;>&nbsp;修改标签";
  28. $r=$empire->fetch1("select bqname,bqsay,funname,bq,issys,bqgs,isclose,classid,myorder from {$dbtbpre}enewsbq where bqid='$bqid'");
  29. }
  30. //分类
  31. $cstr="";
  32. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsbqclass order by classid");
  33. while($cr=$empire->fetch($csql))
  34. {
  35. $select="";
  36. if($cr[classid]==$r[classid])
  37. {
  38. $select=" selected";
  39. }
  40. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  41. }
  42. db_close();
  43. $empire=null;
  44. //--------------------html编辑器
  45. include('../ecmseditor/eshoweditor.php');
  46. $loadeditorjs=ECMS_ShowEditorJS('../ecmseditor/infoeditor/');
  47. ?>
  48. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  49. <html>
  50. <head>
  51. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  52. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  53. <title>标签管理</title>
  54. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  55. <?=$loadeditorjs?>
  56. <script>
  57. function on()
  58. {
  59. var f=document.add
  60. f.HTML.value=f.bqsay.value;
  61. }
  62. function bs(){
  63. var f=document.add
  64. f.bqsay.value=f.HTML.value;
  65. }
  66. function br(){
  67. if(!confirm("是否复位?")){return false;}
  68. document.add.title.select()
  69. }
  70. </script>
  71. </head>
  72. <body>
  73. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  74. <tr>
  75. <td height="25">位置:<?=$url?></td>
  76. </tr>
  77. </table>
  78. <form action="../ecmstemp.php" method="post" name="add" id="add">
  79. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  80. <?=$ecms_hashur['form']?>
  81. <tr class="header">
  82. <td height="25" colspan="2">增加模板标签
  83. <input name="add[bqid]" type="hidden" id="add[bqid]" value="<?=$bqid?>">
  84. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="add[cid]" type="hidden" id="add[cid]" value="<?=$cid?>"></td>
  85. </tr>
  86. <tr bgcolor="#FFFFFF">
  87. <td width="21%" height="25">标签名:</td>
  88. <td width="79%" height="25"><input name="add[bqname]" type="text" id="add[bqname]" value="<?=$r[bqname]?>" size="38">
  89. <font color="#666666">(如”调用文字信息标签”)</font></td>
  90. </tr>
  91. <tr bgcolor="#FFFFFF">
  92. <td height="25">标签符号:</td>
  93. <td height="25"><input name="add[bq]" type="text" id="add[bq]" value="<?=$r[bq]?>" size="38">
  94. <font color="#666666">(如:[ad]参数[/ad],则符号为”ad”)</font></td>
  95. </tr>
  96. <tr bgcolor="#FFFFFF">
  97. <td height="25">所属类别:</td>
  98. <td height="25"><select name="add[classid]" id="add[classid]">
  99. <option value="0">不隶属于任何类别</option>
  100. <?=$cstr?>
  101. </select> <input type="button" name="Submit3" value="管理分类" onclick="window.open('BqClass.php<?=$ecms_hashur['whehref']?>');"></td>
  102. </tr>
  103. <tr bgcolor="#FFFFFF">
  104. <td height="25">函数名:</td>
  105. <td height="25"><input name="add[funname]" type="text" id="add[funname]" value="<?=$r[funname]?>" size="38">
  106. </td>
  107. </tr>
  108. <tr bgcolor="#FFFFFF">
  109. <td height="25">&nbsp;</td>
  110. <td height="25" bgcolor="#FFFFFF"> <p>系统标签:(相对于e/class/t_functions.php文件的函数名)<br>
  111. 用户自定义标签:(相对于e/class/userfun.php文件的函数名,函数命名请以”<strong><font color="#FF0000">user_</font></strong>”开头)</p></td>
  112. </tr>
  113. <tr bgcolor="#FFFFFF">
  114. <td height="25">标签格式:</td>
  115. <td height="25"><input name="add[bqgs]" type="text" id="add[bqgs]" value="<?=stripSlashes($r[bqgs])?>" size="80"></td>
  116. </tr>
  117. <tr bgcolor="#FFFFFF">
  118. <td height="25">&nbsp;</td>
  119. <td height="25">如:<font color="#FF0000">[phomenews]栏目ID/专题ID,显示条数,标题截取数,是否显示时间,操作类型[/phomenews]</font></td>
  120. </tr>
  121. <tr bgcolor="#FFFFFF">
  122. <td height="25" valign="top">标签说明:</td>
  123. <td height="25">
  124. <?=ECMS_ShowEditorVar('bqsay',stripSlashes($r[bqsay]),'Default','../ecmseditor/infoeditor/')?>
  125. </td>
  126. </tr>
  127. <tr bgcolor="#FFFFFF">
  128. <td height="25">是否开启标签:</td>
  129. <td height="25"><input type="radio" name="add[isclose]" value="0"<?=$r[isclose]==0?' checked':''?>>
  130. <input type="radio" name="add[isclose]" value="1"<?=$r[isclose]==1?' checked':''?>>
  131. 否 <font color="#666666">(开启才会在模板中生效)</font></td>
  132. </tr>
  133. <tr bgcolor="#FFFFFF">
  134. <td height="25">排序:</td>
  135. <td height="25"><input name="add[myorder]" type="text" id="add[myorder]" value="<?=$r[myorder]?>" size="38">
  136. <font color="#666666">(值越大越前面)</font></td>
  137. </tr>
  138. <tr bgcolor="#FFFFFF">
  139. <td height="25">&nbsp;</td>
  140. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  141. </tr>
  142. </table>
  143. </form>
  144. </body>
  145. </html>