FileMain.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. $showmod=(int)$_GET['showmod'];
  19. $type=(int)$_GET['type'];
  20. $classid=(int)$_GET['classid'];
  21. $infoid=(int)$_GET['infoid'];
  22. $filepass=(int)$_GET['filepass'];
  23. $modtype=(int)$_GET['modtype'];
  24. $sinfo=(int)$_GET['sinfo'];
  25. $doing=ehtmlspecialchars($_GET['doing']);
  26. $field=ehtmlspecialchars($_GET['field']);
  27. $tranfrom=ehtmlspecialchars($_GET['tranfrom']);
  28. $fileno=ehtmlspecialchars($_GET['fileno']);
  29. $doecmspage=ehtmlspecialchars($_GET['doecmspage']);
  30. if(empty($field))
  31. {
  32. $field="ecms";
  33. }
  34. $search="&classid=$classid&infoid=$infoid&filepass=$filepass&type=$type&modtype=$modtype&sinfo=$sinfo&doing=$doing&tranfrom=$tranfrom&field=$field&fileno=$fileno&doecmspage=$doecmspage".$ecms_hashur['ehref'];
  35. $search1="&classid=$classid&infoid=$infoid&filepass=$filepass&modtype=$modtype&sinfo=$sinfo&doing=$doing&tranfrom=$tranfrom&field=$field&fileno=$fileno&doecmspage=$doecmspage".$ecms_hashur['ehref'];
  36. if($showmod==1)
  37. {
  38. $filename="filep.php";
  39. }
  40. else
  41. {
  42. $filename="file.php";
  43. }
  44. $editor=1;
  45. //风格
  46. $loginadminstyleid=(int)getcvar('loginadminstyleid',1);
  47. ?>
  48. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  49. <html>
  50. <head>
  51. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  52. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  53. <title>选择文件</title>
  54. <script>
  55. function ChangeShowMod(obj){
  56. var furl,searchstr,dotype;
  57. searchstr="<?=$search1?>";
  58. dotype=obj.type.value;
  59. if(obj.showmod.value==1)
  60. {
  61. furl="filep.php?"+searchstr+"&type="+dotype;
  62. }
  63. else
  64. {
  65. furl="file.php?"+searchstr+"&type="+dotype;
  66. }
  67. elfile.location=furl;
  68. }
  69. </script>
  70. </head>
  71. <body leftmargin="0" topmargin="0">
  72. <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" class="tableborder">
  73. <tr class="header">
  74. <td height="27">
  75. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  76. <form name="FileMainNav" method="get" action="">
  77. <tr>
  78. <td height="25">显示模式:
  79. <select name="showmod" id="showmod" onchange="ChangeShowMod(document.FileMainNav);">
  80. <option value="0"<?=$showmod==0?' selected':''?>>数据库模式</option>
  81. <option value="1"<?=$showmod==1?' selected':''?>>目录模式</option>
  82. </select>
  83. 文件类型:
  84. <select name="type" id="type" onchange="ChangeShowMod(document.FileMainNav);">
  85. <option value="1"<?=$type==1?' selected':''?>>图片</option>
  86. <option value="2"<?=$type==2?' selected':''?>>Flash文件</option>
  87. <option value="3"<?=$type==3?' selected':''?>>多媒体文件</option>
  88. <option value="0"<?=$type==0?' selected':''?>>其他附件</option>
  89. </select>
  90. </td>
  91. </tr>
  92. </form>
  93. </table>
  94. </td>
  95. </tr>
  96. <tr>
  97. <td height="100%">
  98. <IFRAME frameBorder="0" id="elfile" name="elfile" scrolling="yes" src="<?=$filename.'?'.$search?>" style="HEIGHT:100%;VISIBILITY:inherit;WIDTH:100%;Z-INDEX:1"></IFRAME>
  99. </td>
  100. </tr>
  101. </table>
  102. </body>
  103. </html>