ListBqtemp.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/fun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"template");
  21. //增加标签模板
  22. function AddBqtemp($tempname,$modid,$subnews,$rownum,$showdate,$temptext,$listvar,$add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(!$tempname||!$temptext||!$modid||!$listvar)
  25. {printerror("EmptyTempname","history.go(-1)");}
  26. //操作权限
  27. CheckLevel($userid,$username,$classid,"template");
  28. $classid=(int)$add['classid'];
  29. $tempname=hRepPostStr($tempname,1);
  30. $temptext=RepPhpAspJspcode($temptext);
  31. $listvar=RepPhpAspJspcode($listvar);
  32. if($add['autorownum'])
  33. {
  34. $rownum=substr_count($temptext,'<!--list.var');
  35. }
  36. //变量处理
  37. $modid=(int)$modid;
  38. $subnews=(int)$subnews;
  39. $rownum=(int)$rownum;
  40. $docode=(int)$add[docode];
  41. $gid=(int)$add['gid'];
  42. $sql=$empire->query("insert into ".GetDoTemptb("enewsbqtemp",$gid)."(tempname,temptext,modid,showdate,listvar,subnews,rownum,classid,docode) values('$tempname','".eaddslashes2($temptext)."',$modid,'".eaddslashes($showdate)."','".eaddslashes2($listvar)."',$subnews,$rownum,$classid,'$docode')");
  43. $lastid=$empire->lastid();
  44. //备份模板
  45. AddEBakTemp('bqtemp',$gid,$lastid,$tempname,$temptext,$subnews,0,$listvar,$rownum,$modid,$showdate,0,$classid,$docode,$userid,$username);
  46. if($sql)
  47. {
  48. //操作日志
  49. insert_dolog("tempid=".$lastid."<br>tempname=".$tempname."&gid=$gid");
  50. printerror("AddBqTempSuccess","AddBqtemp.php?enews=AddBqtemp&gid=$gid".hReturnEcmsHashStrHref2(0));
  51. }
  52. else
  53. {printerror("DbError","history.go(-1)");}
  54. }
  55. //------------------------修改标签模板
  56. function EditBqtemp($tempid,$tempname,$modid,$subnews,$rownum,$showdate,$temptext,$listvar,$add,$userid,$username){
  57. global $empire,$dbtbpre;
  58. $tempid=(int)$tempid;
  59. if(!$tempname||!$temptext||!$modid||!$listvar||!$tempid)
  60. {printerror("EmptyTempname","history.go(-1)");}
  61. //操作权限
  62. CheckLevel($userid,$username,$classid,"template");
  63. $classid=(int)$add['classid'];
  64. $tempname=hRepPostStr($tempname,1);
  65. $temptext=RepPhpAspJspcode($temptext);
  66. $listvar=RepPhpAspJspcode($listvar);
  67. if($add['autorownum'])
  68. {
  69. $rownum=substr_count($temptext,'<!--list.var');
  70. }
  71. //变量处理
  72. $modid=(int)$modid;
  73. $subnews=(int)$subnews;
  74. $rownum=(int)$rownum;
  75. $docode=(int)$add[docode];
  76. $gid=(int)$add['gid'];
  77. $sql=$empire->query("update ".GetDoTemptb("enewsbqtemp",$gid)." set tempname='$tempname',temptext='".eaddslashes2($temptext)."',modid=$modid,showdate='".eaddslashes($showdate)."',listvar='".eaddslashes2($listvar)."',subnews=$subnews,rownum=$rownum,classid=$classid,docode='$docode' where tempid='$tempid'");
  78. //备份模板
  79. AddEBakTemp('bqtemp',$gid,$tempid,$tempname,$temptext,$subnews,0,$listvar,$rownum,$modid,$showdate,0,$classid,$docode,$userid,$username);
  80. if($sql)
  81. {
  82. //操作日志
  83. insert_dolog("tempid=".$tempid."<br>tempname=".$tempname."&gid=$gid");
  84. printerror("EditBqtempSuccess","ListBqtemp.php?classid=$add[cid]&modid=$add[mid]&gid=$gid".hReturnEcmsHashStrHref2(0));
  85. }
  86. else
  87. {printerror("DbError","history.go(-1)");}
  88. }
  89. //-------------------------删除标签模板
  90. function DelBqtemp($tempid,$add,$userid,$username){
  91. global $empire,$dbtbpre;
  92. $tempid=(int)$tempid;
  93. if(!$tempid)
  94. {printerror("NotDelTemplateid","history.go(-1)");}
  95. //操作权限
  96. CheckLevel($userid,$username,$classid,"template");
  97. $gid=(int)$add['gid'];
  98. $r=$empire->fetch1("select tempname from ".GetDoTemptb("enewsbqtemp",$gid)." where tempid='$tempid'");
  99. //删除模板
  100. $sql=$empire->query("delete from ".GetDoTemptb("enewsbqtemp",$gid)." where tempid='$tempid'");
  101. //删除模板备份
  102. DelEbakTempAll('bqtemp',$gid,$tempid);
  103. if($sql)
  104. {
  105. //操作日志
  106. insert_dolog("tempid=".$tempid."<br>tempname=".$r[tempname]."&gid=$gid");
  107. printerror("DelBqtempSuccess","ListBqtemp.php?classid=$add[cid]&modid=$add[mid]&gid=$gid".hReturnEcmsHashStrHref2(0));
  108. }
  109. else
  110. {printerror("DbError","history.go(-1)");}
  111. }
  112. $enews=$_POST['enews'];
  113. if(empty($enews))
  114. {$enews=$_GET['enews'];}
  115. if($enews)
  116. {
  117. hCheckEcmsRHash();
  118. include("../../class/tempfun.php");
  119. }
  120. //增加标签模板
  121. if($enews=="AddBqtemp")
  122. {
  123. $tempname=$_POST['tempname'];
  124. $temptext=$_POST['temptext'];
  125. $modid=$_POST['modid'];
  126. $showdate=$_POST['showdate'];
  127. $subnews=$_POST['subnews'];
  128. $listvar=$_POST['listvar'];
  129. $rownum=$_POST['rownum'];
  130. AddBqtemp($tempname,$modid,$subnews,$rownum,$showdate,$temptext,$listvar,$_POST,$logininid,$loginin);
  131. }
  132. //修改标签模板
  133. elseif($enews=="EditBqtemp")
  134. {
  135. $tempid=$_POST['tempid'];
  136. $tempname=$_POST['tempname'];
  137. $temptext=$_POST['temptext'];
  138. $modid=$_POST['modid'];
  139. $showdate=$_POST['showdate'];
  140. $subnews=$_POST['subnews'];
  141. $listvar=$_POST['listvar'];
  142. $rownum=$_POST['rownum'];
  143. EditBqtemp($tempid,$tempname,$modid,$subnews,$rownum,$showdate,$temptext,$listvar,$_POST,$logininid,$loginin);
  144. }
  145. //删除标签模板
  146. elseif($enews=="DelBqtemp")
  147. {
  148. $tempid=$_GET['tempid'];
  149. DelBqtemp($tempid,$_GET,$logininid,$loginin);
  150. }
  151. $gid=(int)$_GET['gid'];
  152. $gname=CheckTempGroup($gid);
  153. $urlgname=$gname."&nbsp;>&nbsp;";
  154. $url=$urlgname."<a href=ListBqtemp.php?gid=$gid".$ecms_hashur['ehref'].">管理标签模板</a>";
  155. $search="&gid=$gid".$ecms_hashur['ehref'];
  156. $page=(int)$_GET['page'];
  157. $page=RepPIntvar($page);
  158. $start=0;
  159. $line=25;//每页显示条数
  160. $page_line=12;//每页显示链接数
  161. $offset=$page*$line;//总偏移量
  162. $query="select tempid,tempname,modid from ".GetDoTemptb("enewsbqtemp",$gid);
  163. $totalquery="select count(*) as total from ".GetDoTemptb("enewsbqtemp",$gid);
  164. //类别
  165. $add="";
  166. $classid=(int)$_GET['classid'];
  167. if($classid)
  168. {
  169. $add=" where classid=$classid";
  170. $search.="&classid=$classid";
  171. }
  172. //模型
  173. $modid=(int)$_GET['modid'];
  174. if($modid)
  175. {
  176. if(empty($add))
  177. {
  178. $add=" where modid=$modid";
  179. }
  180. else
  181. {
  182. $add.=" and modid=$modid";
  183. }
  184. $search.="&modid=$modid";
  185. }
  186. $query.=$add;
  187. $totalquery.=$add;
  188. $num=$empire->gettotal($totalquery);//取得总条数
  189. $query=$query." order by tempid desc limit $offset,$line";
  190. $sql=$empire->query($query);
  191. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  192. //分类
  193. $cstr="";
  194. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsbqtempclass order by classid");
  195. while($cr=$empire->fetch($csql))
  196. {
  197. $select="";
  198. if($cr[classid]==$classid)
  199. {
  200. $select=" selected";
  201. }
  202. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  203. }
  204. //模型
  205. $mstr="";
  206. $msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod where usemod=0 order by myorder,mid");
  207. while($mr=$empire->fetch($msql))
  208. {
  209. $select="";
  210. if($mr[mid]==$modid)
  211. {
  212. $select=" selected";
  213. }
  214. $mstr.="<option value='".$mr[mid]."'".$select.">".$mr[mname]."</option>";
  215. }
  216. ?>
  217. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  218. <html>
  219. <head>
  220. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  221. <title>管理标签模板</title>
  222. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  223. </head>
  224. <body>
  225. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  226. <tr>
  227. <td width="50%">位置:
  228. <?=$url?>
  229. </td>
  230. <td><div align="right" class="emenubutton">
  231. <input type="button" name="Submit5" value="增加标签模板" onclick="self.location.href='AddBqtemp.php?enews=AddBqtemp&gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  232. &nbsp;&nbsp;
  233. <input type="button" name="Submit5" value="管理标签模板分类" onclick="self.location.href='BqtempClass.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  234. </div></td>
  235. </tr>
  236. </table>
  237. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  238. <form name="form1" method="get" action="ListBqtemp.php">
  239. <?=$ecms_hashur['eform']?>
  240. <input type=hidden name=gid value="<?=$gid?>">
  241. <tr>
  242. <td height="25">限制显示:
  243. <select name="classid" id="classid" onchange="document.form1.submit()">
  244. <option value="0">显示所有分类</option>
  245. <?=$cstr?>
  246. </select>
  247. <select name="modid" id="modid" onchange="document.form1.submit()">
  248. <option value="0">显示所有系统模型</option>
  249. <?=$mstr?>
  250. </select>
  251. </td>
  252. </tr>
  253. </form>
  254. </table>
  255. <br>
  256. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  257. <tr class="header">
  258. <td width="8%" height="25"><div align="center">ID</div></td>
  259. <td width="43%" height="25"><div align="center">模板名</div></td>
  260. <td width="30%"><div align="center">所属系统模型</div></td>
  261. <td width="19%" height="25"><div align="center">操作</div></td>
  262. </tr>
  263. <?
  264. while($r=$empire->fetch($sql))
  265. {
  266. $modr=$empire->fetch1("select mid,mname from {$dbtbpre}enewsmod where mid=$r[modid]");
  267. ?>
  268. <tr bgcolor="ffffff" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  269. <td height="25"><div align="center">
  270. <a href="EditTempid.php?tempno=1&tempid=<?=$r['tempid']?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>" target="_blank" title="修改模板ID"><?=$r[tempid]?></a>
  271. </div></td>
  272. <td height="25"><div align="center">
  273. <?=$r[tempname]?>
  274. </div></td>
  275. <td><div align="center">[<a href="ListBqtemp.php?classid=<?=$classid?>&modid=<?=$modr[mid]?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>"><?=$modr[mname]?></a>]</div></td>
  276. <td height="25"><div align="center"> [<a href="AddBqtemp.php?enews=EditBqtemp&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">修改</a>]
  277. [<a href="AddBqtemp.php?enews=AddBqtemp&docopy=1&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">复制</a>]
  278. [<a href="ListBqtemp.php?enews=DelBqtemp&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  279. </tr>
  280. <?
  281. }
  282. ?>
  283. <tr bgcolor="ffffff">
  284. <td height="25" colspan="4">&nbsp;<?=$returnpage?></td>
  285. </tr>
  286. </table>
  287. </body>
  288. </html>
  289. <?
  290. db_close();
  291. $empire=null;
  292. ?>