ListNewstemp.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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 AddNewsTemplate($add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(!$add[tempname]||!$add[temptext]||!$add[modid])
  25. {printerror("EmptyTempname","history.go(-1)");}
  26. //操作权限
  27. CheckLevel($userid,$username,$classid,"template");
  28. $classid=(int)$add['classid'];
  29. $add[tempname]=hRepPostStr($add[tempname],1);
  30. $add[temptext]=RepPhpAspJspcode($add[temptext]);
  31. $add[temptext]=RepTemplateJsUrl($add[temptext],1,0);//替换JS地址
  32. $add[modid]=(int)$add[modid];
  33. $gid=(int)$add['gid'];
  34. $sql=$empire->query("insert into ".GetDoTemptb("enewsnewstemp",$gid)."(tempname,temptext,showdate,modid,classid,isdefault) values('$add[tempname]','".eaddslashes2($add[temptext])."','".eaddslashes($add[showdate])."',$add[modid],$classid,0);");
  35. $tempid=$empire->lastid();
  36. //备份模板
  37. AddEBakTemp('newstemp',$gid,$tempid,$add[tempname],$add[temptext],0,0,'',0,$add[modid],$add[showdate],0,$classid,0,$userid,$username);
  38. if($sql)
  39. {
  40. //操作日志
  41. insert_dolog("tempid=".$tempid."<br>tempname=".$add[tempname]."&gid=$gid");
  42. printerror("AddNewsTempSuccess","AddNewstemp.php?enews=AddNewstemp&gid=$gid".hReturnEcmsHashStrHref2(0));
  43. }
  44. else
  45. {printerror("DbError","history.go(-1)");}
  46. }
  47. //--------------------------修改内容模板
  48. function EditNewsTemplate($add,$userid,$username){
  49. global $empire,$dbtbpre,$public_r;
  50. $add[tempid]=(int)$add[tempid];
  51. if(!$add[tempid]||!$add[tempname]||!$add[temptext]||!$add[modid])
  52. {printerror("EmptyTempname","history.go(-1)");}
  53. //操作权限
  54. CheckLevel($userid,$username,$classid,"template");
  55. $classid=(int)$add['classid'];
  56. $add[tempname]=hRepPostStr($add[tempname],1);
  57. $add[temptext]=RepPhpAspJspcode($add[temptext]);
  58. $add[temptext]=RepTemplateJsUrl($add[temptext],1,0);//替换JS地址
  59. $add[modid]=(int)$add[modid];
  60. $gid=(int)$add['gid'];
  61. $sql=$empire->query("update ".GetDoTemptb("enewsnewstemp",$gid)." set tempname='$add[tempname]',temptext='".eaddslashes2($add[temptext])."',showdate='".eaddslashes($add[showdate])."',modid=$add[modid],classid=$classid where tempid='$add[tempid]'");
  62. //将信息设为未生成
  63. $mr=$empire->fetch1("select tbname from {$dbtbpre}enewsmod where mid='$add[modid]'");
  64. //$usql=$empire->query("update {$dbtbpre}ecms_".$mr[tbname]." set havehtml=0 where newstempid='$add[tempid]'");
  65. //备份模板
  66. AddEBakTemp('newstemp',$gid,$add[tempid],$add[tempname],$add[temptext],0,0,'',0,$add[modid],$add[showdate],0,$classid,0,$userid,$username);
  67. if($gid==$public_r['deftempid']||(!$public_r['deftempid']&&($gid==1||$gid==0)))
  68. {
  69. //删除动态模板缓存文件
  70. DelOneTempTmpfile('text'.$add[tempid]);
  71. }
  72. if($sql)
  73. {
  74. //操作日志
  75. insert_dolog("tempid=".$add[tempid]."<br>tempname=".$add[tempname]."&gid=$gid");
  76. printerror("EditNewsTempSuccess","ListNewstemp.php?classid=$add[cid]&modid=$add[mid]&gid=$gid".hReturnEcmsHashStrHref2(0));
  77. }
  78. else
  79. {printerror("DbError","history.go(-1)");}
  80. }
  81. //------------------------删除内容模板
  82. function DelNewsTemp($tempid,$add,$userid,$username){
  83. global $empire,$dbtbpre,$public_r;
  84. $tempid=(int)$tempid;
  85. if(!$tempid)
  86. {printerror("NotDelTemplateid","history.go(-1)");}
  87. //操作权限
  88. CheckLevel($userid,$username,$classid,"template");
  89. $gid=(int)$add['gid'];
  90. $r=$empire->fetch1("select tempname,modid from ".GetDoTemptb("enewsnewstemp",$gid)." where tempid='$tempid'");
  91. $dotempname=$r['tempname'];
  92. $sql=$empire->query("delete from ".GetDoTemptb("enewsnewstemp",$gid)." where tempid='$tempid'");
  93. //将信息设为未生成
  94. $mr=$empire->fetch1("select tbname from {$dbtbpre}enewsmod where mid='$r[modid]'");
  95. //$usql=$empire->query("update {$dbtbpre}ecms_".$mr[tbname]." set havehtml=0 where newstempid='$tempid'");
  96. //删除备份
  97. DelEbakTempAll('newstemp',$gid,$tempid);
  98. if($gid==$public_r['deftempid']||(!$public_r['deftempid']&&($gid==1||$gid==0)))
  99. {
  100. //删除动态模板缓存文件
  101. DelOneTempTmpfile('text'.$tempid);
  102. }
  103. if($sql)
  104. {
  105. //操作日志
  106. insert_dolog("tempid=".$tempid."<br>tempname=".$dotempname."&gid=$gid");
  107. printerror("DelNewsTempSuccess","ListNewstemp.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=="AddNewstemp")
  122. {
  123. AddNewsTemplate($_POST,$logininid,$loginin);
  124. }
  125. //修改内容模板
  126. elseif($enews=="EditNewstemp")
  127. {
  128. EditNewsTemplate($_POST,$logininid,$loginin);
  129. }
  130. //删除内容模板
  131. elseif($enews=="DelNewstemp")
  132. {
  133. $tempid=$_GET['tempid'];
  134. DelNewsTemp($tempid,$_GET,$logininid,$loginin);
  135. }
  136. $gid=(int)$_GET['gid'];
  137. $gname=CheckTempGroup($gid);
  138. $urlgname=$gname."&nbsp;>&nbsp;";
  139. $search="&gid=$gid".$ecms_hashur['ehref'];
  140. $url=$urlgname."<a href=ListNewstemp.php?gid=$gid".$ecms_hashur['ehref'].">管理内容模板</a>";
  141. $page=(int)$_GET['page'];
  142. $page=RepPIntvar($page);
  143. $start=0;
  144. $line=25;//每页显示条数
  145. $page_line=12;//每页显示链接数
  146. $offset=$page*$line;//总偏移量
  147. $query="select tempid,tempname,modid from ".GetDoTemptb("enewsnewstemp",$gid);
  148. $totalquery="select count(*) as total from ".GetDoTemptb("enewsnewstemp",$gid);
  149. //类别
  150. $add="";
  151. $classid=(int)$_GET['classid'];
  152. if($classid)
  153. {
  154. $add=" where classid=$classid";
  155. $search.="&classid=$classid";
  156. }
  157. //模型
  158. $modid=(int)$_GET['modid'];
  159. if($modid)
  160. {
  161. if(empty($add))
  162. {
  163. $add=" where modid=$modid";
  164. }
  165. else
  166. {
  167. $add.=" and modid=$modid";
  168. }
  169. $search.="&modid=$modid";
  170. }
  171. $query.=$add;
  172. $totalquery.=$add;
  173. $num=$empire->gettotal($totalquery);//取得总条数
  174. $query=$query." order by tempid desc limit $offset,$line";
  175. $sql=$empire->query($query);
  176. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  177. //分类
  178. $cstr="";
  179. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsnewstempclass order by classid");
  180. while($cr=$empire->fetch($csql))
  181. {
  182. $select="";
  183. if($cr[classid]==$classid)
  184. {
  185. $select=" selected";
  186. }
  187. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  188. }
  189. //模型
  190. $mstr="";
  191. $msql=$empire->query("select mid,mname from {$dbtbpre}enewsmod where usemod=0 order by myorder,mid");
  192. while($mr=$empire->fetch($msql))
  193. {
  194. $select="";
  195. if($mr[mid]==$modid)
  196. {
  197. $select=" selected";
  198. }
  199. $mstr.="<option value='".$mr[mid]."'".$select.">".$mr[mname]."</option>";
  200. }
  201. ?>
  202. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  203. <html>
  204. <head>
  205. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  206. <title>管理内容模板</title>
  207. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  208. </head>
  209. <body>
  210. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  211. <tr>
  212. <td width="50%">位置:
  213. <?=$url?>
  214. </td>
  215. <td> <div align="right" class="emenubutton">
  216. <input type="button" name="Submit5" value="增加内容模板" onclick="self.location.href='AddNewstemp.php?enews=AddNewstemp&gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  217. &nbsp;&nbsp;
  218. <input type="button" name="Submit5" value="管理内容模板分类" onclick="self.location.href='NewstempClass.php?gid=<?=$gid?><?=$ecms_hashur['ehref']?>';">
  219. </div></td>
  220. </tr>
  221. </table>
  222. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  223. <form name="form1" method="get" action="ListNewstemp.php">
  224. <?=$ecms_hashur['eform']?>
  225. <input type=hidden name=gid value="<?=$gid?>">
  226. <tr>
  227. <td height="25">限制显示:
  228. <select name="classid" id="classid" onchange="document.form1.submit()">
  229. <option value="0">显示所有分类</option>
  230. <?=$cstr?>
  231. </select>
  232. <select name="modid" id="modid" onchange="document.form1.submit()">
  233. <option value="0">显示所有系统模型</option>
  234. <?=$mstr?>
  235. </select>
  236. </td>
  237. </tr>
  238. </form>
  239. </table>
  240. <br>
  241. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  242. <tr class="header">
  243. <td width="8%" height="25"><div align="center">ID</div></td>
  244. <td width="43%" height="25"><div align="center">模板名</div></td>
  245. <td width="30%"><div align="center">所属系统模型</div></td>
  246. <td width="19%" height="25"><div align="center">操作</div></td>
  247. </tr>
  248. <?
  249. while($r=$empire->fetch($sql))
  250. {
  251. $modr=$empire->fetch1("select mid,mname from {$dbtbpre}enewsmod where mid=$r[modid]");
  252. ?>
  253. <tr bgcolor="ffffff" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  254. <td height="25"><div align="center">
  255. <a href="EditTempid.php?tempno=4&tempid=<?=$r['tempid']?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>" target="_blank" title="修改模板ID"><?=$r[tempid]?></a>
  256. </div></td>
  257. <td height="25"><div align="center">
  258. <?=$r[tempname]?>
  259. </div></td>
  260. <td><div align="center">[<a href="ListNewstemp.php?classid=<?=$classid?>&modid=<?=$modr[mid]?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>"><?=$modr[mname]?></a>]</div></td>
  261. <td height="25"><div align="center"> [<a href="AddNewstemp.php?enews=EditNewstemp&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">修改</a>]
  262. [<a href="AddNewstemp.php?enews=AddNewstemp&docopy=1&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['ehref']?>">复制</a>]
  263. [<a href="ListNewstemp.php?enews=DelNewstemp&tempid=<?=$r[tempid]?>&cid=<?=$classid?>&mid=<?=$modid?>&gid=<?=$gid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  264. </tr>
  265. <?
  266. }
  267. ?>
  268. <tr bgcolor="ffffff">
  269. <td height="25" colspan="4">&nbsp;<?=$returnpage?></td>
  270. </tr>
  271. </table>
  272. </body>
  273. </html>
  274. <?
  275. db_close();
  276. $empire=null;
  277. ?>