AddTempvar.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,"tempvar");
  20. $gid=(int)$_GET['gid'];
  21. $gname=CheckTempGroup($gid);
  22. $urlgname=$gname."&nbsp;>&nbsp;";
  23. $enews=ehtmlspecialchars($_GET['enews']);
  24. $cid=ehtmlspecialchars($_GET['cid']);
  25. $r[myorder]=0;
  26. $url=$urlgname."<a href=ListTempvar.php?gid=$gid".$ecms_hashur['ehref'].">管理模板变量</a>&nbsp;>&nbsp;增加模板变量";
  27. //修改
  28. if($enews=="EditTempvar")
  29. {
  30. $varid=(int)$_GET['varid'];
  31. $r=$empire->fetch1("select myvar,varname,varvalue,classid,isclose,myorder from ".GetDoTemptb("enewstempvar",$gid)." where varid='$varid'");
  32. $r[varvalue]=ehtmlspecialchars(stripSlashes($r[varvalue]));
  33. $url=$urlgname."<a href=ListTempvar.php?gid=$gid".$ecms_hashur['ehref'].">管理模板变量</a>&nbsp;>&nbsp;修改模板变量:".$r[myvar];
  34. }
  35. //分类
  36. $cstr="";
  37. $csql=$empire->query("select classid,classname from {$dbtbpre}enewstempvarclass order by classid");
  38. while($cr=$empire->fetch($csql))
  39. {
  40. $select="";
  41. if($cr[classid]==$r[classid])
  42. {
  43. $select=" selected";
  44. }
  45. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  46. }
  47. db_close();
  48. $empire=null;
  49. ?>
  50. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  51. <html>
  52. <head>
  53. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  54. <title>增加模板变量</title>
  55. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  56. <script>
  57. function ReTempBak(){
  58. self.location.reload();
  59. }
  60. </script>
  61. </head>
  62. <body>
  63. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  64. <tr>
  65. <td height="25">位置:<?=$url?></td>
  66. </tr>
  67. </table>
  68. <br>
  69. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  70. <form name="form1" method="post" action="ListTempvar.php">
  71. <?=$ecms_hashur['form']?>
  72. <tr class="header">
  73. <td height="25" colspan="2">增加模板变量
  74. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="varid" type="hidden" value="<?=$varid?>">
  75. <input name="cid" type="hidden" value="<?=$cid?>">
  76. <input name="gid" type="hidden" value="<?=$gid?>"></td>
  77. </tr>
  78. <tr bgcolor="#FFFFFF">
  79. <td width="19%" height="25">变量名(*)</td>
  80. <td width="81%" height="25">[!--temp.
  81. <input name="myvar" type="text" value="<?=$r[myvar]?>" size="16">
  82. --] <font color="#666666">(如:ecms,变量就是[!--temp.ecms--])</font></td>
  83. </tr>
  84. <tr bgcolor="#FFFFFF">
  85. <td height="25">所属类别</td>
  86. <td height="25"><select name="classid">
  87. <option value="0">不隶属于任何类别</option>
  88. <?=$cstr?>
  89. </select> <input type="button" name="Submit6222322" value="管理分类" onclick="window.open('TempvarClass.php<?=$ecms_hashur['whehref']?>');"></td>
  90. </tr>
  91. <tr bgcolor="#FFFFFF">
  92. <td height="25">变量标识(*)</td>
  93. <td height="25"><input name="varname" type="text" value="<?=$r[varname]?>">
  94. <font color="#666666">(如:帝国CMS)</font></td>
  95. </tr>
  96. <tr bgcolor="#FFFFFF">
  97. <td height="25">是否开启变量</td>
  98. <td height="25"><input type="radio" name="isclose" value="0"<?=$r[isclose]==0?' checked':''?>>
  99. <input type="radio" name="isclose" value="1"<?=$r[isclose]==1?' checked':''?>>
  100. 否<font color="#666666">(开启才会在模板中生效)</font></td>
  101. </tr>
  102. <tr bgcolor="#FFFFFF">
  103. <td height="25">变量排序</td>
  104. <td height="25"><input name="myorder" type="text" value="<?=$r[myorder]?>" size="6">
  105. <font color="#666666">(值越大等级越高,可以嵌入更低等级的变量)</font></td>
  106. </tr>
  107. <tr bgcolor="#FFFFFF">
  108. <td height="25"><strong>变量值</strong>(*)</td>
  109. <td height="25">请将变量内容<a href="#ecms" onclick="window.clipboardData.setData('Text',document.form1.varvalue.value);document.form1.varvalue.select()" title="点击复制模板内容"><strong>复制到Dreamweaver(推荐)</strong></a>或者使用<a href="#ecms" onclick="window.open('editor.php?getvar=opener.document.form1.varvalue.value&returnvar=opener.document.form1.varvalue.value&fun=ReturnHtml&notfullpage=1<?=$ecms_hashur['ehref']?>','edittemp','width=880,height=600,scrollbars=auto,resizable=yes');"><strong>模板在线编辑</strong></a>进行可视化编辑</td>
  110. </tr>
  111. <tr bgcolor="#FFFFFF">
  112. <td height="25" colspan="2"><div align="center">
  113. <textarea name="varvalue" cols="90" rows="27" wrap="OFF" style="WIDTH: 100%"><?=$r[varvalue]?></textarea>
  114. </div></td>
  115. </tr>
  116. <tr bgcolor="#FFFFFF">
  117. <td height="25">&nbsp;</td>
  118. <td height="25"><input type="submit" name="Submit" value="提交"> &nbsp;<input type="reset" name="Submit2" value="重置">
  119. <?php
  120. if($enews=='EditTempvar')
  121. {
  122. ?>
  123. &nbsp;&nbsp;[<a href="#empirecms" onclick="window.open('TempBak.php?temptype=tempvar&tempid=<?=$varid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>','ViewTempBak','width=450,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">修改记录</a>]
  124. <?php
  125. }
  126. ?>
  127. </td>
  128. </tr>
  129. </form>
  130. <tr bgcolor="#FFFFFF">
  131. <td height="25" colspan="2">&nbsp;[<a href="#ecms" onclick="window.open('EnewsBq.php<?=$ecms_hashur['whehref']?>','','width=600,height=500,scrollbars=yes,resizable=yes');">查看模板标签语法</a>]
  132. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('../ListClass.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看JS调用地址</a>]
  133. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('ListTempvar.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看公共模板变量</a>]
  134. &nbsp;&nbsp;[<a href="#ecms" onclick="window.open('ListBqtemp.php<?=$ecms_hashur['whehref']?>','','width=800,height=600,scrollbars=yes,resizable=yes');">查看标签模板</a>]</td>
  135. </tr>
  136. </table>
  137. </body>
  138. </html>