AddInfoChClass.php 2.5 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. //验证用户
  9. $lur=is_login();
  10. $logininid=(int)$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. $user_r=$empire->fetch1("select adminclass,groupid from {$dbtbpre}enewsuser where userid='$logininid'");
  18. //用户组权限
  19. $gr=$empire->fetch1("select doall from {$dbtbpre}enewsgroup where groupid='$user_r[groupid]'");
  20. if($gr['doall'])
  21. {
  22. $jsfile='../data/fc/cmsclass.js';
  23. }
  24. else
  25. {
  26. $jsfile='../data/fc/userclass'.$logininid.'.js';
  27. }
  28. //操作的栏目
  29. $fcfile="../data/fc/ListEnews.php";
  30. $do_class="<script src=".$jsfile."?".time()."></script>";
  31. if(!file_exists($fcfile))
  32. {$do_class=ShowClass_AddClass("","n",0,"|-",0,0);}
  33. db_close();
  34. $empire=null;
  35. ?>
  36. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  37. <html>
  38. <head>
  39. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  40. <title>增加信息</title>
  41. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  42. <script>
  43. function changeclass(obj)
  44. {
  45. if(obj.addclassid.value=="")
  46. {
  47. alert("请选择栏目");
  48. }
  49. else
  50. {
  51. self.location.href='AddNews.php?<?=$ecms_hashur['ehref']?>&enews=AddNews&classid='+obj.addclassid.value;
  52. }
  53. }
  54. </script>
  55. </head>
  56. <body>
  57. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  58. <tr>
  59. <td height="25">位置:<a href='ListAllInfo.php<?=$ecms_hashur['whehref']?>'>管理信息</a>&nbsp;&gt;&nbsp;增加信息</td>
  60. </tr>
  61. </table>
  62. <form name="form1" method="post" action="enews.php">
  63. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  64. <?=$ecms_hashur['eform']?>
  65. <tr class="header">
  66. <td height="25"><div align="center">请选择要增加信息的终极栏目</div></td>
  67. </tr>
  68. <tr>
  69. <td height="38" bgcolor="#FFFFFF">
  70. <div align="center">
  71. <select name="addclassid" size="26" id="addclassid" onchange='javascript:changeclass(document.form1);' style="width:420">
  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>