DelDownRecord.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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,"deldownrecord");
  20. //批量删除备份记录
  21. function DelDownRecord($add,$userid,$username){
  22. global $empire,$dbtbpre;
  23. if(empty($add['downtime']))
  24. {
  25. printerror("EmptyDownTime","history.go(-1)");
  26. }
  27. //验证权限
  28. CheckLevel($userid,$username,$classid,"deldownrecord");
  29. $truetime=to_time($add['downtime']);
  30. $sql=$empire->query("delete from {$dbtbpre}enewsdownrecord where truetime<=".$truetime);
  31. if($sql)
  32. {
  33. //操作日志
  34. insert_dolog("time=$add[downtime]");
  35. printerror("DelDownRecordSuccess","DelDownRecord.php".hReturnEcmsHashStrHref2(1));
  36. }
  37. else
  38. {printerror("DbError","history.go(-1)");}
  39. }
  40. $enews=$_POST['enews'];
  41. if(empty($enews))
  42. {$enews=$_GET['enews'];}
  43. if($enews)
  44. {
  45. hCheckEcmsRHash();
  46. @set_time_limit(0);
  47. }
  48. //删除下载记录
  49. if($enews=="DelDownRecord")
  50. {
  51. $add=$_POST['add'];
  52. DelDownRecord($add,$logininid,$loginin);
  53. }
  54. db_close();
  55. $empire=null;
  56. ?>
  57. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  58. <html>
  59. <head>
  60. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  61. <title>删除下载备份记录</title>
  62. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  63. </head>
  64. <body>
  65. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  66. <tr>
  67. <td>位置:<a href="DelDownRecord.php<?=$ecms_hashur['whehref']?>">删除下载备份记录</a></td>
  68. </tr>
  69. </table>
  70. <form name="form1" method="post" action="DelDownRecord.php" onsubmit="return confirm('确认要删除?');">
  71. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  72. <?=$ecms_hashur['form']?>
  73. <tr class="header">
  74. <td height="25"><div align="center">删除下载备份记录
  75. <input name="enews" type="hidden" id="enews" value="DelDownRecord">
  76. </div></td>
  77. </tr>
  78. <tr>
  79. <td height="25" bgcolor="#FFFFFF"><div align="center">删除截止于
  80. <input name="add[downtime]" type="text" id="add[downtime]" value="<?=date("Y-m-d H:i:s")?>" size="20">
  81. 之前的备份记录
  82. <input type="submit" name="Submit" value="提交">
  83. &nbsp; </div></td>
  84. </tr>
  85. <tr>
  86. <td height="25" bgcolor="#FFFFFF"><font color="#666666">说明: 删除下载备份记录,以减少数据库空间.</font></td>
  87. </tr>
  88. </table>
  89. </form>
  90. </body>
  91. </html>