AddInfoC.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. //验证用户
  9. $lur=is_login();
  10. $logininid=$lur['userid'];
  11. $loginin=$lur['username'];
  12. $loginrnd=$lur['rnd'];
  13. $loginlevel=$lur['groupid'];
  14. $loginadminstyleid=$lur['adminstyleid'];
  15. //ehash
  16. $ecms_hashur=hReturnEcmsHashStrAll();
  17. //验证权限
  18. CheckLevel($logininid,$loginin,$classid,"cj");
  19. //--------------------操作的栏目
  20. $fcfile="../data/fc/ListEnews.php";
  21. $do_class="<script src=../data/fc/cmsclass.js></script>";
  22. if(!file_exists($fcfile))
  23. {$do_class=ShowClass_AddClass("","n",0,"|-",0,0);}
  24. db_close();
  25. $empire=null;
  26. if($_GET['from'])
  27. {
  28. $listclasslink="ListPageInfoClass.php";
  29. }
  30. else
  31. {
  32. $listclasslink="ListInfoClass.php";
  33. }
  34. ?>
  35. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  36. <html>
  37. <head>
  38. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  39. <title>增加采集节点</title>
  40. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  41. <script>
  42. function changecj(obj)
  43. {
  44. if(obj.newsclassid.value=="nono")
  45. {
  46. alert("请选择栏目");
  47. }
  48. else
  49. {
  50. self.location.href='AddInfoClass.php?<?=$ecms_hashur['ehref']?>&enews=AddInfoClass&from=<?=RepPostStr($_GET['from'],1)?>&newsclassid='+obj.newsclassid.value;
  51. }
  52. }
  53. </script>
  54. </head>
  55. <body>
  56. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  57. <tr>
  58. <td height="25">位置:采集&nbsp;&gt;&nbsp;<a href='<?=$listclasslink?><?=$ecms_hashur['whehref']?>'>管理节点</a>&nbsp;&gt;&nbsp;增加节点</td>
  59. </tr>
  60. </table>
  61. <form name="form1" method="post" action="enews.php">
  62. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  63. <?=$ecms_hashur['eform']?>
  64. <tr class="header">
  65. <td height="25"><div align="center">请选择要增加采集的栏目</div></td>
  66. </tr>
  67. <tr>
  68. <td height="25" bgcolor="#FFFFFF"><div align="center">
  69. <select name="newsclassid" id="newsclassid" onchange='javascript:changecj(document.form1);'>
  70. <option value=''>选择栏目</option>
  71. <option value='0'>非采集节点(父节点)</option>
  72. <?=$do_class?>
  73. </select>
  74. </div></td>
  75. </tr>
  76. <tr>
  77. <td height="25" bgcolor="#FFFFFF"><div align="center"><font color="#666666">(采集节点要选择终极栏目)</font></div></td>
  78. </tr>
  79. </table>
  80. </form>
  81. </body>
  82. </html>