ChangePath.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("class/functions.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  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,"dbdata");
  20. $bakpath=$public_r['bakdbpath'];
  21. $hand=@opendir($bakpath);
  22. $form='ebakredata';
  23. if($_GET['toform'])
  24. {
  25. $form=RepPostVar($_GET['toform']);
  26. }
  27. $onclickword='(点击转向恢复数据)';
  28. $change=(int)$_GET['change'];
  29. if($change==1)
  30. {
  31. $onclickword='(点击选择)';
  32. }
  33. ?>
  34. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  35. <html>
  36. <head>
  37. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  38. <title>管理备份目录</title>
  39. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  40. <script>
  41. function ChangePath(pathname)
  42. {
  43. opener.document.<?=$form?>.mypath.value=pathname;
  44. window.close();
  45. }
  46. </script>
  47. </head>
  48. <body>
  49. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  50. <tr>
  51. <td>位置:<a href="ChangePath.php<?=$ecms_hashur['whehref']?>">管理备份目录</a></td>
  52. </tr>
  53. </table>
  54. <br>
  55. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  56. <tr class="header">
  57. <td width="45%" height="25">
  58. <div align="center">备份目录名<?=$onclickword?></div></td>
  59. <td width="20%" height="25">
  60. <div align="center">查看说明文件</div></td>
  61. <td width="35%">
  62. <div align="center">操作</div></td>
  63. </tr>
  64. <?
  65. while($file=@readdir($hand))
  66. {
  67. if($file!="."&&$file!=".."&&is_dir($bakpath."/".$file))
  68. {
  69. if($change==1)
  70. {
  71. $showfile="<a href='#ebak' onclick=\"javascript:ChangePath('$file');\" title='$file'>$file</a>";
  72. }
  73. else
  74. {
  75. $showfile="<a href='phome.php?phome=PathGotoRedata&mypath=$file".$ecms_hashur['href']."' title='$file'>$file</a>";
  76. }
  77. ?>
  78. <tr bgcolor="#FFFFFF">
  79. <td height="25"> <div align="left"><img src="images/dir.gif" width="19" height="15">&nbsp;
  80. <?=$showfile?> </div></td>
  81. <td height="25"> <div align="center"> [<a href="<? echo $bakpath."/".$file."/readme.txt"?>" target=_blank>查看备份说明</a>]</div></td>
  82. <td><div align="center">[<a href="#ebak" onclick="window.open('phome.php?phome=DoZip&p=<?=$file?>&change=<?=$change?><?=$ecms_hashur['href']?>','','width=350,height=160');">打包并下载</a>]&nbsp;&nbsp;&nbsp;[<a href="phome.php?phome=DelBakpath&path=<?=$file?>&change=<?=$change?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除目录</a>]</div></td>
  83. </tr>
  84. <?
  85. }
  86. }
  87. ?>
  88. <tr bgcolor="#FFFFFF">
  89. <td height="25" colspan="3">&nbsp;</td>
  90. </tr>
  91. </table>
  92. </body>
  93. </html>