ShowLoadTempPath.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. $bakpath="../../data/LoadTemp";
  21. $hand=@opendir($bakpath);
  22. ?>
  23. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  24. <html>
  25. <head>
  26. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  27. <title>查看导入模板目录</title>
  28. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  29. </head>
  30. <body>
  31. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  32. <tr>
  33. <td>位置:查看导入模板目录</td>
  34. </tr>
  35. </table>
  36. <br>
  37. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  38. <tr bgcolor="#0472BC">
  39. <td width="45%" height="25" bgcolor="#698CC3">
  40. <div align="left"><strong><font color="#FFFFFF">导入模板目录(e/data/LoadTemp)</font></strong></div></td>
  41. </tr>
  42. <?
  43. while($file=@readdir($hand))
  44. {
  45. if ($file!="."&&$file!=".."&&is_file($bakpath."/".$file))
  46. {
  47. ?>
  48. <tr bgcolor="#DBEAF5">
  49. <td height="25" bgcolor="#FFFFFF">
  50. <div align="left">&nbsp;<img src="../../data/images/dir/htm_icon.gif" width="19" height="15">
  51. <?=$file?>
  52. </div></td>
  53. </tr>
  54. <?
  55. }
  56. }
  57. @closedir($hand);
  58. ?>
  59. <tr>
  60. <td height="25">&nbsp;</td>
  61. </tr>
  62. </table>
  63. </body>
  64. </html>