ChangeListTemp.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. $url="<a href=ChangeListTemp.php".$ecms_hashur['whehref'].">批量更换栏目列表模板</a>";
  21. //栏目
  22. $fcfile="../../data/fc/ListEnews.php";
  23. $class="<script src=../../data/fc/cmsclass.js></script>";
  24. if(!file_exists($fcfile))
  25. {$class=ShowClass_AddClass("",0,0,"|-",0,0);}
  26. //列表模板
  27. $listtemp="";
  28. $sql=$empire->query("select mname,mid from {$dbtbpre}enewsmod order by myorder,mid");
  29. while($r=$empire->fetch($sql))
  30. {
  31. $listtemp.="<option value=0 style='background:#99C4E3'>".$r[mname]."</option>";
  32. $sql1=$empire->query("select tempname,tempid from ".GetTemptb("enewslisttemp")." where modid='$r[mid]'");
  33. while($r1=$empire->fetch($sql1))
  34. {
  35. $listtemp.="<option value='".$r1[tempid]."'>|-".$r1[tempname]."</option>";
  36. }
  37. }
  38. db_close();
  39. $empire=null;
  40. ?>
  41. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  42. <html>
  43. <head>
  44. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  45. <title>批量更换栏目列表模板</title>
  46. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  47. </head>
  48. <body>
  49. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  50. <tr>
  51. <td height="25">位置:<?=$url?></td>
  52. </tr>
  53. </table>
  54. <form name="form1" method="post" action="../ecmstemp.php" onsubmit="return confirm('确认要更换?');">
  55. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  56. <?=$ecms_hashur['form']?>
  57. <tr class="header">
  58. <td height="25" colspan="2">批量更换栏目列表模板
  59. <input name="enews" type="hidden" id="enews" value="ChangeClassListtemp">
  60. </td>
  61. </tr>
  62. <tr bgcolor="#FFFFFF">
  63. <td width="15%" height="25">操作栏目:</td>
  64. <td width="85%" height="25"><select name="classid" size="16" id="classid" style="width:220">
  65. <option selected>所有栏目</option>
  66. <?=$class?>
  67. </select> <font color="#666666">(如选择父栏目,将应用于所有子栏目)</font> </td>
  68. </tr>
  69. <tr bgcolor="#FFFFFF">
  70. <td height="25">新的列表模板:</td>
  71. <td height="25"><select name="listtempid" id="listtempid">
  72. <option value=0>选择列表模板</option>
  73. <?=$listtemp?>
  74. </select></td>
  75. </tr>
  76. <tr bgcolor="#FFFFFF">
  77. <td height="25">&nbsp;</td>
  78. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  79. </tr>
  80. </table>
  81. </form>
  82. </body>
  83. </html>