DelMoreMsg.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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,"msg");
  20. $enews=$_POST['enews'];
  21. if($enews)
  22. {
  23. hCheckEcmsRHash();
  24. @set_time_limit(0);
  25. }
  26. if($enews=="DelMoreMsg")
  27. {
  28. include("../../class/com_functions.php");
  29. DelMoreMsg($_POST,$logininid,$loginin);
  30. }
  31. db_close();
  32. $empire=null;
  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 type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  41. </head>
  42. <body>
  43. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  44. <tr>
  45. <td>位置: <a href="DelMoreMsg.php<?=$ecms_hashur['whehref']?>">批量删除站内短消息</a></td>
  46. </tr>
  47. </table>
  48. <form name="form1" method="post" action="DelMoreMsg.php" onsubmit="return confirm('确认要删除?');">
  49. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  50. <?=$ecms_hashur['form']?>
  51. <tr class="header">
  52. <td height="25" colspan="2"><div align="center">删除站内短消息
  53. <input name="enews" type="hidden" id="enews" value="DelMoreMsg">
  54. </div></td>
  55. </tr>
  56. <tr>
  57. <td width="20%" height="25" bgcolor="#FFFFFF">消息类型</td>
  58. <td width="80%" bgcolor="#FFFFFF"><select name="msgtype" id="msgtype">
  59. <option value="0">前台全部消息</option>
  60. <option value="2">只删除前台系统消息</option>
  61. <option value="1">后台全部消息</option>
  62. <option value="3">只删除后台系统消息</option>
  63. </select></td>
  64. </tr>
  65. <tr>
  66. <td height="25" bgcolor="#FFFFFF">发件人</td>
  67. <td bgcolor="#FFFFFF"><input name="from_username" type="text" id="from_username">
  68. <input name="fromlike" type="checkbox" id="fromlike" value="1" checked>
  69. 模糊匹配 (不填为不限)</td>
  70. </tr>
  71. <tr>
  72. <td height="25" bgcolor="#FFFFFF">收件人</td>
  73. <td bgcolor="#FFFFFF"><input name="to_username" type="text" id="to_username">
  74. <input name="tolike" type="checkbox" id="tolike" value="1" checked>
  75. 模糊匹配(不填为不限)</td>
  76. </tr>
  77. <tr>
  78. <td height="25" bgcolor="#FFFFFF">包含关键字</td>
  79. <td bgcolor="#FFFFFF"><input name="keyboard" type="text" id="keyboard">
  80. <select name="keyfield" id="keyfield">
  81. <option value="0">检索标题和内容</option>
  82. <option value="1">检索信息标题</option>
  83. <option value="2">检索信息内容</option>
  84. </select>
  85. (多个请用&quot;,&quot;格开)</td>
  86. </tr>
  87. <tr>
  88. <td height="25" bgcolor="#FFFFFF">时间</td>
  89. <td bgcolor="#FFFFFF">删除从
  90. <input name="starttime" type="text" id="starttime" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  91. <input name="endtime" type="text" id="endtime" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  92. 之间的短消息</td>
  93. </tr>
  94. <tr>
  95. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  96. <td bgcolor="#FFFFFF"><input type="submit" name="Submit" value="批量删除"></td>
  97. </tr>
  98. </table>
  99. </form>
  100. </body>
  101. </html>