AdminPage.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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=(int)$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. $leftfile=hRepPostStr($_GET['leftfile'],1);
  20. $mainfile=hRepPostStr($_GET['mainfile'],1);
  21. $title=hRepPostStr($_GET['title'],1);
  22. if(empty($leftfile))
  23. {
  24. $leftfile='left.php';
  25. }
  26. if(empty($mainfile))
  27. {
  28. $mainfile='main.php';
  29. }
  30. if(empty($title))
  31. {
  32. $title='管理';
  33. }
  34. //check
  35. if(stristr($leftfile,'://'))
  36. {
  37. exit();
  38. }
  39. if(stristr($mainfile,'://'))
  40. {
  41. exit();
  42. }
  43. ?>
  44. <HTML>
  45. <HEAD>
  46. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  47. <title><?=$title?></title>
  48. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  49. </HEAD>
  50. <script language=javascript>
  51. var ie = (document.all) ? true : false;
  52. function changeColor(j){
  53. if(j < 0) return;
  54. (ie)?chIE(j,idb):chNS(j,idb.document);
  55. }
  56. function chIE(j,obj){
  57. with(obj){
  58. document.bgColor = j;
  59. }}
  60. function chNS(j,obj){
  61. with(obj){
  62. bgColor = j;
  63. }}
  64. </script>
  65. <SCRIPT>
  66. function switchSysBar(){
  67. if (switchPoint.innerText==3){
  68. switchPoint.innerText=4
  69. document.all("frmTitle").style.display="none"
  70. }else{
  71. switchPoint.innerText=3
  72. document.all("frmTitle").style.display=""
  73. }}
  74. </SCRIPT>
  75. <body leftmargin="0" topmargin="0">
  76. <TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%">
  77. <TBODY>
  78. <TR>
  79. <TD rowspan="2" align=middle vAlign=center noWrap id="frmTitle"> <IFRAME frameBorder=0 id="apleft" name="apleft" scrolling=yes src="<?=$leftfile?>" style="HEIGHT:100%;VISIBILITY:inherit;WIDTH:190px;Z-INDEX:2"></IFRAME>
  80. </TD>
  81. <TD rowspan="2" bgColor="#D0D0D0"> <TABLE border=0 cellPadding=0 cellSpacing=0 height="100%">
  82. <TBODY>
  83. <tr>
  84. <TD onclick="switchSysBar()" style="HEIGHT:100%;"> <font style="COLOR:666666;CURSOR:hand;FONT-FAMILY:Webdings;FONT-SIZE:9pt;">
  85. <SPAN id="switchPoint" title="打开/关闭左边导航栏">3</SPAN></font>
  86. </TBODY>
  87. </TABLE></TD>
  88. <TD style="WIDTH:100%">
  89. <table border=0 cellPadding=0 cellSpacing=0 height=100% width=100%><tr height=30 bgcolor=C7D4F7>
  90. <td height="27" bgcolor="#D0D0D0"><strong><?=$title?></strong></td>
  91. </tr><tr><td><IFRAME frameBorder=0 id="apmain" name="apmain" scrolling=yes src="<?=$mainfile?>" style="HEIGHT:100%;VISIBILITY:inherit;WIDTH:100%;Z-INDEX:1"></IFRAME></td></tr>
  92. </table>
  93. </TD>
  94. </TR>
  95. </TBODY>
  96. </TABLE>
  97. </body>
  98. </html>
  99. <?php
  100. db_close();
  101. $empire=null;
  102. ?>