RepNewstext.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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,"repnewstext");
  20. $url="<a href=RepNewstext.php".$ecms_hashur['whehref'].">批量替换信息内容</a>";
  21. //栏目
  22. $fcfile="../../data/fc/ListEnews.php";
  23. $class="<script src=../../data/fc/cmsclass.js></script>";
  24. if(!file_exists($fcfile))
  25. {$class=ShowClass_AddClass("",0,0,"|-",0,0);}
  26. //数据表
  27. $tbname=RepPostVar($_GET['tbname']);
  28. $table='';
  29. $first=1;
  30. $htb=0;
  31. $tsql=$empire->query("select tid,tbname,tname from {$dbtbpre}enewstable order by tid");
  32. while($tr=$empire->fetch($tsql))
  33. {
  34. if($first==1)
  35. {
  36. $firsttable=$tr[tbname];
  37. $firsttid=$tr[tid];
  38. $first=0;
  39. }
  40. else
  41. {$first=0;}
  42. if($tbname==$tr[tbname])
  43. {
  44. $htb=1;
  45. $select=" selected";
  46. $thistid=$tr[tid];
  47. }
  48. else
  49. {
  50. $select="";
  51. }
  52. $table.="<option value='".$tr[tbname]."'".$select.">".$tr[tname]."</option>";
  53. }
  54. if(!$table)
  55. {printerror("NotRepNewstextTb","history.go(-1)");}
  56. $table="<select name='tbname' onchange=self.location='RepNewstext.php?".$ecms_hashur['ehref']."&tbname='+this.options[this.selectedIndex].value>".$table."</select>";
  57. //字段
  58. if(empty($tbname))
  59. {
  60. $showtable=$firsttable;
  61. $showtid=$firsttid;
  62. }
  63. else
  64. {
  65. if($htb==0)
  66. {
  67. printerror("ErrorUrl","history.go(-1)");
  68. }
  69. $showtable=$tbname;
  70. $showtid=$thistid;
  71. }
  72. $field='';
  73. $s=$empire->query("SHOW FIELDS FROM {$dbtbpre}ecms_".$showtable);
  74. $noshowfield=",id,onclick,newspath,keyboard,keyid,userid,username,istop,truetime,ismember,dokey,isgood,titlecolor,titlefont,isurl,titleurl,filename,plnum,firsttitle,totaldown,";
  75. while($r=$empire->fetch($s))
  76. {
  77. //不显示字段
  78. if(strstr($noshowfield,",".$r[Field].","))
  79. {
  80. //continue;
  81. }
  82. $field.="<option value='".$r[Field]."'>".$r[Field]."</option>";
  83. }
  84. $datafsql=$empire->query("SHOW FIELDS FROM {$dbtbpre}ecms_".$showtable."_data_1");
  85. while($dfr=$empire->fetch($datafsql))
  86. {
  87. if($dfr[Field]=='classid'||$dfr[Field]=='id')
  88. {
  89. continue;
  90. }
  91. $field.="<option value='".$dfr[Field]."'>".$dfr[Field]."</option>";
  92. }
  93. db_close();
  94. $empire=null;
  95. ?>
  96. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  97. <html>
  98. <head>
  99. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  100. <title>批量替换信息内容</title>
  101. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  102. </head>
  103. <body>
  104. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  105. <tr>
  106. <td height="25">位置:<?=$url?></td>
  107. </tr>
  108. </table>
  109. <form action="../ecmscom.php" method="post" name="form1" target="_blank" onsubmit="return confirm('确认要替换?');">
  110. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  111. <?=$ecms_hashur['form']?>
  112. <tr class="header">
  113. <td height="25" colspan="2">批量替换信息内容
  114. <input name="enews" type="hidden" id="enews" value="DoRepNewstext"> <input name="tid" type="hidden" id="tid" value="<?=$showtid?>"></td>
  115. </tr>
  116. <tr bgcolor="#FFFFFF">
  117. <td height="25">选择替换表(*):</td>
  118. <td height="25">
  119. <?=$table?>
  120. </td>
  121. </tr>
  122. <tr bgcolor="#FFFFFF">
  123. <td width="15%" height="25">操作栏目:</td>
  124. <td width="85%" height="25"><select name="classid" id="classid">
  125. <option value=0>所有栏目</option>
  126. <?=$class?>
  127. </select> <font color="#666666">(如选择父栏目,将应用于所有子栏目)</font></td>
  128. </tr>
  129. <tr bgcolor="#FFFFFF">
  130. <td height="25">替换字段(*):</td>
  131. <td height="25"><select name="field" size="12" id="field" style="width:180">
  132. <?=$field?>
  133. </select> </td>
  134. </tr>
  135. <tr bgcolor="#FFFFFF">
  136. <td height="26">替换内容:</td>
  137. <td height="26"> <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
  138. <tr>
  139. <td> <div align="center">原字符</div></td>
  140. <td bgcolor="#FFFFFF"> <div align="left">
  141. <textarea name="oldword" cols="100" rows="5" id="textarea"></textarea>
  142. (*)</div></td>
  143. </tr>
  144. <tr>
  145. <td> <div align="center">新字符 </div></td>
  146. <td bgcolor="#FFFFFF"> <div align="left">
  147. <textarea name="newword" cols="100" rows="5" id="newword2"></textarea>
  148. </div></td>
  149. </tr>
  150. </table></td>
  151. </tr>
  152. <tr bgcolor="#FFFFFF">
  153. <td height="26">更新方式:</td>
  154. <td height="26"><input name="dotype" type="radio" value="0" checked>
  155. 替换
  156. <input type="radio" name="dotype" value="1">
  157. 覆盖 <font color="#666666">(覆盖方式为将字段全部内容更新为新字符内容,覆盖方式原字符可以不设置)</font></td>
  158. </tr>
  159. <tr bgcolor="#FFFFFF">
  160. <td rowspan="2">选项设置:</td>
  161. <td height="26"><p>相同更新
  162. <input name="over" type="checkbox" id="over" value="1">
  163. <font color="#666666">(相同更新:当“字段值=原字符”的条件下才替换或覆盖)</font></p>
  164. </td>
  165. </tr>
  166. <tr bgcolor="#FFFFFF">
  167. <td height="26">正则替换
  168. <input name="dozz" type="checkbox" id="dozz" value="1">
  169. <font color="#666666"> (正则替换:原字符可以是用正则表示,用“*”表示任意字符)</font></td>
  170. </tr>
  171. <tr bgcolor="#FFFFFF">
  172. <td height="25">&nbsp;</td>
  173. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  174. </tr>
  175. <tr bgcolor="#FFFFFF">
  176. <td height="25" colspan="2">备注:替换时最好备份一下数据.</td>
  177. </tr>
  178. </table>
  179. </form>
  180. </body>
  181. </html>