ListAd.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/fun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"ad");
  21. //增加广告
  22. function AddAd($add,$titlefont,$titlecolor,$userid,$username){
  23. global $empire,$dbtbpre;
  24. if(!$add[classid]||!$add[title]||!$add[adtype])
  25. {printerror("EmptyAd","history.go(-1)");}
  26. //验证权限
  27. CheckLevel($userid,$username,$classid,"ad");
  28. $add[htmlcode]=AddAddsData(RepPhpAspJspcodeText($add[htmlcode]));
  29. $add[reptext]=AddAddsData(RepPhpAspJspcodeText($add[reptext]));
  30. $ttitlefont=TitleFont($titlefont,'no');
  31. //变量处理
  32. $add['title']=hRepPostStr($add['title'],1);
  33. $add[pic_width]=(int)$add[pic_width];
  34. $add[pic_height]=(int)$add[pic_height];
  35. $add[classid]=(int)$add[classid];
  36. $add[adtype]=(int)$add[adtype];
  37. $add[t]=(int)$add[t];
  38. $add[ylink]=(int)$add[ylink];
  39. $add['filepass']=(int)$add['filepass'];
  40. $add['picurl']=hRepPostStr2(eDoRepPostComStr($add['picurl'],1));
  41. $add['url']=hRepPostStr2(eDoRepPostComStr($add['url'],1));
  42. $add['target']=hRepPostStr($add['target'],1);
  43. $add['alt']=hRepPostStr($add['alt'],1);
  44. $add['starttime']=hRepPostStr($add['starttime'],1);
  45. $add['endtime']=hRepPostStr($add['endtime'],1);
  46. $add['adsay']=hRepPostStr2($add['adsay']);
  47. $ttitlefont=AddAddsData($ttitlefont);
  48. $titlecolor=AddAddsData($titlecolor);
  49. $sql=$empire->query("insert into {$dbtbpre}enewsad(picurl,url,pic_width,pic_height,onclick,classid,adtype,title,target,alt,starttime,endtime,adsay,titlefont,titlecolor,htmlcode,t,ylink,reptext) values('$add[picurl]','$add[url]',$add[pic_width],$add[pic_height],0,$add[classid],$add[adtype],'$add[title]','$add[target]','$add[alt]','$add[starttime]','$add[endtime]','$add[adsay]','$ttitlefont','$titlecolor','$add[htmlcode]',$add[t],$add[ylink],'$add[reptext]');");
  50. $adid=$empire->lastid();
  51. //更新附件
  52. UpdateTheFileOther(3,$adid,$add['filepass'],'other');
  53. GetAdJs($adid);
  54. if($sql)
  55. {
  56. //操作日志
  57. insert_dolog("adid=".$adid."<br>title=".$add[title]);
  58. printerror("AddAdSuccess","AddAd.php?enews=AddAd&t=".$add[t].hReturnEcmsHashStrHref2(0));
  59. }
  60. else
  61. {printerror("DbError","history.go(-1)");}
  62. }
  63. //修改广告
  64. function EditAd($add,$titlefont,$titlecolor,$userid,$username){
  65. global $empire,$time,$dbtbpre;
  66. $add[adid]=(int)$add[adid];
  67. if(!$add[classid]||!$add[title]||!$add[adtype]||!$add[adid])
  68. {printerror("EmptyAd","history.go(-1)");}
  69. //验证权限
  70. CheckLevel($userid,$username,$classid,"ad");
  71. $add[htmlcode]=AddAddsData(RepPhpAspJspcodeText($add[htmlcode]));
  72. $add[reptext]=AddAddsData(RepPhpAspJspcodeText($add[reptext]));
  73. $ttitlefont=TitleFont($titlefont,'no');
  74. //重置
  75. if($add[reset])
  76. {$a=",onclick=0";}
  77. //变量处理
  78. $add['title']=hRepPostStr($add['title'],1);
  79. $add[pic_width]=(int)$add[pic_width];
  80. $add[pic_height]=(int)$add[pic_height];
  81. $add[classid]=(int)$add[classid];
  82. $add[adtype]=(int)$add[adtype];
  83. $add[t]=(int)$add[t];
  84. $add[ylink]=(int)$add[ylink];
  85. $add['filepass']=(int)$add['filepass'];
  86. $add['picurl']=hRepPostStr2(eDoRepPostComStr($add['picurl'],1));
  87. $add['url']=hRepPostStr2(eDoRepPostComStr($add['url'],1));
  88. $add['target']=hRepPostStr($add['target'],1);
  89. $add['alt']=hRepPostStr($add['alt'],1);
  90. $add['starttime']=hRepPostStr($add['starttime'],1);
  91. $add['endtime']=hRepPostStr($add['endtime'],1);
  92. $add['adsay']=hRepPostStr2($add['adsay']);
  93. $ttitlefont=AddAddsData($ttitlefont);
  94. $titlecolor=AddAddsData($titlecolor);
  95. $sql=$empire->query("update {$dbtbpre}enewsad set picurl='$add[picurl]',url='$add[url]',pic_width=$add[pic_width],pic_height=$add[pic_height],classid=$add[classid],adtype=$add[adtype],title='$add[title]',target='$add[target]',alt='$add[alt]',starttime='$add[starttime]',endtime='$add[endtime]',adsay='$add[adsay]',titlefont='$ttitlefont',titlecolor='$titlecolor',htmlcode='$add[htmlcode]',t=$add[t],ylink=$add[ylink],reptext='$add[reptext]'".$a." where adid='$add[adid]'");
  96. UpdateTheFileEditOther(3,$add['adid'],'other');
  97. GetAdJs($add[adid]);
  98. if($sql)
  99. {
  100. //操作日志
  101. insert_dolog("adid=".$add[adid]."<br>title=".$add[title]);
  102. printerror("EditAdSuccess","ListAd.php?time=$time".hReturnEcmsHashStrHref2(0));
  103. }
  104. else
  105. {printerror("DbError","history.go(-1)");}
  106. }
  107. //删除广告
  108. function DelAd($adid,$userid,$username){
  109. global $empire,$time,$public_r,$dbtbpre;
  110. $adid=(int)$adid;
  111. if(!$adid)
  112. {printerror("NotDelAdid","history.go(-1)");}
  113. //验证权限
  114. CheckLevel($userid,$username,$classid,"ad");
  115. $r=$empire->fetch1("select title from {$dbtbpre}enewsad where adid='$adid'");
  116. $sql=$empire->query("delete from {$dbtbpre}enewsad where adid='$adid'");
  117. $file="../../../d/js/acmsd/".$public_r[adfile].$adid.".js";
  118. DelFiletext($file);
  119. //删除附件
  120. DelFileOtherTable("modtype=3 and id='$adid'");
  121. if($sql)
  122. {
  123. //操作日志
  124. insert_dolog("adid=".$adid."<br>title=".$r[title]);
  125. printerror("DelAdSuccess","ListAd.php?time=$time".hReturnEcmsHashStrHref2(0));
  126. }
  127. else
  128. {printerror("DbError","history.go(-1)");}
  129. }
  130. //批量生成广告
  131. function ReAdJs_all($start=0,$from,$userid,$username){
  132. global $empire,$public_r,$fun_r,$dbtbpre;
  133. $moreportpid=(int)$_GET['moreportpid'];
  134. $mphref='';
  135. if($moreportpid)
  136. {
  137. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  138. }
  139. $start=(int)$start;
  140. if(empty($start))
  141. {
  142. $start=0;
  143. }
  144. $b=0;
  145. $sql=$empire->query("select adid from {$dbtbpre}enewsad where adid>$start order by adid limit ".$public_r['readjsnum']);
  146. while($r=$empire->fetch($sql))
  147. {
  148. $b=1;
  149. $newstart=$r[adid];
  150. GetAdJs($r[adid]);
  151. }
  152. if(empty($b))
  153. {
  154. //操作日志
  155. insert_dolog("");
  156. printerror("ReAdJsSuccess",$from);
  157. }
  158. echo $fun_r['OneReAdJsSuccess']."(ID:<font color=red><b>".$newstart."</b></font>)<script>self.location.href='ListAd.php?enews=ReAdJs_all&start=$newstart&from=".urlencode($from).hReturnEcmsHashStrHref(0).$mphref."';</script>";
  159. exit();
  160. }
  161. //清除注释
  162. function ClearHtmlZs($text){
  163. $text=str_replace('<!--','',$text);
  164. $text=str_replace('//-->','',$text);
  165. $text=str_replace('-->','',$text);
  166. return $text;
  167. }
  168. //生成广告js
  169. function GetAdJs($adid){
  170. global $empire,$public_r,$dbtbpre;
  171. $r=$empire->fetch1("select * from {$dbtbpre}enewsad where adid='$adid'");
  172. $file=eReturnTrueEcmsPath()."d/js/acmsd/".$public_r[adfile].$adid.".js";
  173. //到期
  174. if($r['endtime']<>'0000-00-00'&&time()>to_time($r['endtime']))
  175. {
  176. $r[reptext]=ClearHtmlZs($r[reptext]);
  177. $h=addslashes(str_replace("\r\n","",$r[reptext]));
  178. $html="document.write(\"".$h."\")";
  179. WriteFiletext_n($file,$html);
  180. return '';
  181. }
  182. if($r['ylink'])
  183. {
  184. $ad_url=$r['url'];
  185. }
  186. else
  187. {
  188. $ad_url=$public_r[newsurl]."e/public/ClickAd?adid=".$adid;//广告链接
  189. }
  190. //----------------------文字广告
  191. if($r[t]==1)
  192. {
  193. $r[titlefont]=$r[titlecolor].','.$r[titlefont];
  194. $picurl=DoTitleFont($r[titlefont],$r[picurl]);//文字属性
  195. $h="<a href='".$ad_url."' target=".$r[target]." title='".$r[alt]."'>".addslashes($picurl)."</a>";
  196. //普通显示
  197. if($r[adtype]==1)
  198. {
  199. $html="document.write(\"".$h."\")";
  200. }
  201. //可移动透明对话框
  202. else
  203. {
  204. $html="document.write(\"<script language=javascript src=".$public_r[newsurl]."d/js/acmsd/ecms_dialog.js></script>\");
  205. document.write(\"<div style='position:absolute;left:300px;top:150px;width:".$r[pic_width]."; height:".$r[pic_height].";z-index:1;solid;filter:alpha(opacity=90)' id=DGbanner5 onmousedown='down1(this)' onmousemove='move()' onmouseup='down=false'><table cellpadding=0 border=0 cellspacing=1 width=".$r[pic_width]." height=".$r[pic_height]." bgcolor=#000000><tr><td height=18 bgcolor=#5A8ACE align=right style='cursor:move;'><a href=# style='font-size: 9pt; color: #eeeeee; text-decoration: none' onClick=clase('DGbanner5') >关闭>>><img border='0' src='".$public_r[newsurl]."d/js/acmsd/close_o.gif'></a>&nbsp;</td></tr><tr><td bgcolor=f4f4f4 >&nbsp;".$h."</td></tr></table></div>\");";
  206. }
  207. }
  208. //------------------html广告
  209. elseif($r[t]==2)
  210. {
  211. $r[htmlcode]=ClearHtmlZs($r[htmlcode]);
  212. $h=addslashes(str_replace("\r\n","",$r[htmlcode]));
  213. //普通显示
  214. if($r[adtype]==1)
  215. {
  216. $html="document.write(\"".$h."\")";
  217. }
  218. //可移动透明对话框
  219. else
  220. {
  221. $html="document.write(\"<script language=javascript src=".$public_r[newsurl]."d/js/acmsd/ecms_dialog.js></script>\");
  222. document.write(\"<div style='position:absolute;left:300px;top:150px;width:".$r[pic_width]."; height:".$r[pic_height].";z-index:1;solid;filter:alpha(opacity=90)' id=DGbanner5 onmousedown='down1(this)' onmousemove='move()' onmouseup='down=false'><table cellpadding=0 border=0 cellspacing=1 width=".$r[pic_width]." height=".$r[pic_height]." bgcolor=#000000><tr><td height=18 bgcolor=#5A8ACE align=right style='cursor:move;'><a href=# style='font-size: 9pt; color: #eeeeee; text-decoration: none' onClick=clase('DGbanner5') >关闭>>><img border='0' src='".$public_r[newsurl]."d/js/acmsd/close_o.gif'></a>&nbsp;</td></tr><tr><td bgcolor=f4f4f4 >&nbsp;".$h."</td></tr></table></div>\");";
  223. }
  224. }
  225. //------------------弹出广告
  226. elseif($r[t]==3)
  227. {
  228. //打开新窗口
  229. if($r[adtype]==8)
  230. {
  231. $html="window.open('".$r[url]."');";
  232. }
  233. //弹出窗口
  234. elseif($r[adtype]==9)
  235. {
  236. $html="window.open('".$r[url]."','','width=".$r[pic_width].",height=".$r[pic_height].",scrollbars=yes');";
  237. }
  238. //普能网页窗口
  239. else
  240. {
  241. $html="window.showModalDialog('".$r[url]."','','dialogWidth:".$r[pic_width]."px;dialogHeight:".$r[pic_height]."px;scroll:no;status:no;help:no');";
  242. }
  243. }
  244. //---------------------图片与flash广告
  245. else
  246. {
  247. $filetype=GetFiletype($r[picurl]);
  248. //flash
  249. if($filetype==".swf")
  250. {
  251. $h="<object classid=\\\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\\\" codebase=\\\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\\\" name=\\\"movie\\\" width=\\\"".$r[pic_width]."\\\" height=\\\"".$r[pic_height]."\\\" id=\\\"movie\\\"><param name=\\\"movie\\\" value=\\\"".$r[picurl]."\\\"><param name=\\\"quality\\\" value=\\\"high\\\"><param name=\\\"menu\\\" value=\\\"false\\\"><embed src=\\\"".$r[picurl]."\\\" width=\\\"".$r[pic_width]."\\\" height=\\\"".$r[pic_height]."\\\" quality=\\\"high\\\" pluginspage=\\\"http://www.macromedia.com/go/getflashplayer\\\" type=\\\"application/x-shockwave-flash\\\" id=\\\"movie\\\" name=\\\"movie\\\" menu=\\\"false\\\"></embed><PARAM NAME='wmode' VALUE='Opaque'></object>";
  252. }
  253. else
  254. {
  255. $h="<a href='".$ad_url."' target=".$r[target]."><img src='".$r[picurl]."' border=0 width='".$r[pic_width]."' height='".$r[pic_height]."' alt='".$r[alt]."'></a>";
  256. }
  257. //普通显示
  258. if($r[adtype]==1)
  259. {
  260. $html="document.write(\"".$h."\");";
  261. }
  262. //满屏浮动显示
  263. elseif($r[adtype]==4)
  264. {
  265. $html="ns4=(document.layers)?true:false;
  266. ie4=(document.all)?true:false;
  267. if(ns4){document.write(\"<layer id=DGbanner2 width=".$r[pic_width]." height=".$r[pic_height]." onmouseover=stopme('DGbanner2') onmouseout=movechip('DGbanner2')>".$h."</layer>\");}
  268. else{document.write(\"<div id=DGbanner2 style='position:absolute; width:".$r[pic_width]."px; height:".$r[pic_height]."px; z-index:9; filter: Alpha(Opacity=90)' onmouseover=stopme('DGbanner2') onmouseout=movechip('DGbanner2')>".$h."</div>\");}
  269. document.write(\"<script language=javascript src=".$public_r[newsurl]."d/js/acmsd/ecms_float_fullscreen.js></script>\");";
  270. }
  271. //上下浮动显示 - 右
  272. elseif($r[adtype]==5)
  273. {
  274. $html="if (navigator.appName == 'Netscape')
  275. {document.write(\"<layer id=DGbanner3 top=150 width=".$r[pic_width]." height=".$r[pic_height].">".$h."</layer>\");}
  276. else{document.write(\"<div id=DGbanner3 style='position: absolute;width:".$r[pic_height].";top:150;visibility: visible;z-index: 1'>".$h."</div>\");}
  277. document.write(\"<script language=javascript src=".$public_r[newsurl]."d/js/acmsd/ecms_float_upanddown.js></script>\");";
  278. }
  279. //上下浮动显示 - 左
  280. elseif($r[adtype]==6)
  281. {
  282. $html="if(navigator.appName == 'Netscape')
  283. {document.write(\"<layer id=DGbanner10 top=150 width=".$r[pic_width]." height=".$r[pic_height].">".$h."</layer>\");}
  284. else{document.write(\"<div id=DGbanner10 style='position: absolute;width:".$r[pic_width].";top:150;visibility: visible;z-index: 1'>".$h."</div>\");}
  285. document.write(\"<script language=javascript src=".$public_r[newsurl]."d/js/acmsd/ecms_float_upanddown_L.js></script>\");";
  286. }
  287. //全屏幕渐隐消失
  288. elseif($r[adtype]==7)
  289. {
  290. $html="ns4=(document.layers)?true:false;
  291. if(ns4){document.write(\"<layer id=DGbanner4Cont onLoad='moveToAbsolute(layer1.pageX-160,layer1.pageY);clip.height=".$r[pic_height].";clip.width=".$r[pic_width]."; visibility=show;'><layer id=DGbanner4News position:absolute; top:0; left:0>".$h."</layer></layer>\");}
  292. else{document.write(\"<div id=DGbanner4 style='position:absolute;top:0; left:0;'><div id=DGbanner4Cont style='position:absolute;width:".$r[pic_width].";height:".$r[pic_height].";clip:rect(0,".$r[pic_width].",".$r[pic_height].",0)'><div id=DGbanner4News style='position:absolute;top:0;left:0;right:820'>".$h."</div></div></div>\");}
  293. document.write(\"<script language=javascript src=".$public_r[newsurl]."d/js/acmsd/ecms_fullscreen.js></script>\");";
  294. }
  295. //可移动透明对话框
  296. elseif($r[adtype]==3)
  297. {
  298. $html="document.write(\"<script language=javascript src=".$public_r[newsurl]."d/js/acmsd/ecms_dialog.js></script>\");
  299. document.write(\"<div style='position:absolute;left:300px;top:150px;width:".$r[pic_width]."; height:".$r[pic_height].";z-index:1;solid;filter:alpha(opacity=90)' id=DGbanner5 onmousedown='down1(this)' onmousemove='move()' onmouseup='down=false'><table cellpadding=0 border=0 cellspacing=1 width=".$r[pic_width]." height=".$r[pic_height]." bgcolor=#000000><tr><td height=18 bgcolor=#5A8ACE align=right style='cursor:move;'><a href=# style='font-size: 9pt; color: #eeeeee; text-decoration: none' onClick=clase('DGbanner5') >关闭>>><img border='0' src='".$public_r[newsurl]."d/js/acmsd/close_o.gif'></a>&nbsp;</td></tr><tr><td bgcolor=f4f4f4 >&nbsp;".$h."</td></tr></table></div>\");";
  300. }
  301. else
  302. {
  303. $html="function closeAd(){huashuolayer2.style.visibility='hidden';huashuolayer3.style.visibility='hidden';}function winload(){huashuolayer2.style.top=109;huashuolayer2.style.left=5;huashuolayer3.style.top=109;huashuolayer3.style.right=5;}//if(document.body.offsetWidth>800){
  304. {document.write(\"<div id=huashuolayer2 style='position: absolute;visibility:visible;z-index:1'><table width=0 border=0 cellspacing=0 cellpadding=0><tr><td height=10 align=right bgcolor=666666><a href=javascript:closeAd()><img src=".$public_r[newsurl]."d/js/acmsd/close.gif width=12 height=10 border=0></a></td></tr><tr><td>".$h."</td></tr></table></div>\"+\"<div id=huashuolayer3 style='position: absolute;visibility:visible;z-index:1'><table width=0 border=0 cellspacing=0 cellpadding=0><tr><td height=10 align=right bgcolor=666666><a href=javascript:closeAd()><img src=".$public_r[newsurl]."d/js/acmsd/close.gif width=12 height=10 border=0></a></td></tr><tr><td>".$h."</td></tr></table></div>\");}winload()//}";
  305. }
  306. }
  307. WriteFiletext_n($file,$html);
  308. }
  309. $enews=$_POST['enews'];
  310. if(empty($enews))
  311. {$enews=$_GET['enews'];}
  312. if($enews)
  313. {
  314. hCheckEcmsRHash();
  315. }
  316. //设置访问端
  317. $moreportpid=0;
  318. if($enews=='ReAdJs_all')
  319. {
  320. $moreportpid=Moreport_hDoSetSelfPath(0);
  321. }
  322. //增加广告
  323. if($enews=="AddAd")
  324. {
  325. $add=$_POST['add'];
  326. $add[picurl]=$_POST['picurl'];
  327. $titlefont=$_POST['titlefont'];
  328. $titlecolor=$_POST['titlecolor'];
  329. $add['filepass']=$_POST['filepass'];
  330. AddAd($add,$titlefont,$titlecolor,$logininid,$loginin);
  331. }
  332. //修改广告
  333. elseif($enews=="EditAd")
  334. {
  335. $add=$_POST['add'];
  336. $add[picurl]=$_POST['picurl'];
  337. $titlefont=$_POST['titlefont'];
  338. $titlecolor=$_POST['titlecolor'];
  339. $time=$_POST['time'];
  340. $add['filepass']=$_POST['filepass'];
  341. EditAd($add,$titlefont,$titlecolor,$logininid,$loginin);
  342. }
  343. //删除广告
  344. elseif($enews=="DelAd")
  345. {
  346. $adid=$_GET['adid'];
  347. $time=$_POST['time'];
  348. DelAd($adid,$logininid,$loginin);
  349. }
  350. //批量刷新广告JS
  351. elseif($enews=="ReAdJs_all")
  352. {
  353. ReAdJs_all($_GET['start'],$_GET['from'],$logininid,$loginin);
  354. }
  355. $page=(int)$_GET['page'];
  356. $page=RepPIntvar($page);
  357. $start=0;
  358. $line=20;//每页显示条数
  359. $page_line=12;//每页显示链接数
  360. $offset=$page*$line;//总偏移量
  361. $totalquery="select count(*) as total from {$dbtbpre}enewsad";
  362. $query="select * from {$dbtbpre}enewsad";
  363. //过期广告
  364. $search='';
  365. $search.=$ecms_hashur['ehref'];
  366. $where='';
  367. $and='';
  368. $time=(int)$_GET['time'];
  369. if($time)
  370. {
  371. $date=date("Y-m-d");
  372. $where.="endtime<'$date' and endtime<>'0000-00-00'";
  373. $and=' and ';
  374. $search.="&time=$time";
  375. }
  376. //搜索
  377. $sear=(int)$_GET['sear'];
  378. if($sear)
  379. {
  380. $keyboard=RepPostVar2($_GET['keyboard']);
  381. $show=(int)$_GET['show'];
  382. $classid=(int)$_GET['classid'];
  383. $t=(int)$_GET['t'];
  384. if($keyboard)
  385. {
  386. if($show==1)
  387. {
  388. $where.=$and."title like '%$keyboard%'";
  389. }
  390. elseif($show==2)
  391. {
  392. $where.=$and."adsay like '%$keyboard%'";
  393. }
  394. else
  395. {
  396. $where.=$and."(title like '%$keyboard%' or adsay like '%$keyboard%')";
  397. }
  398. $and=' and ';
  399. }
  400. if($classid)
  401. {
  402. $where.=$and."classid='$classid'";
  403. $and=' and ';
  404. }
  405. if($t!=9)
  406. {
  407. $where.=$and."t='$t'";
  408. $and=' and ';
  409. }
  410. $search.="&classid=$classid&show=$show&t=$t&sear=1&keyboard=$keyboard";
  411. }
  412. if($where)
  413. {
  414. $totalquery.=' where '.$where;
  415. $query.=' where '.$where;
  416. }
  417. $num=$empire->gettotal($totalquery);//取得总条数
  418. $query=$query." order by adid desc limit $offset,$line";
  419. $sql=$empire->query($query);
  420. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  421. $ty[1]="普通显示";
  422. $ty[2]="";
  423. $ty[3]="可移动透明对话框";
  424. $ty[4]="满屏浮动显示";
  425. $ty[5]="上下浮动显示 - 右";
  426. $ty[6]="上下浮动显示 - 左";
  427. $ty[7]="全屏幕渐隐消失";
  428. $ty[8]="打开新窗口";
  429. $ty[9]="弹出窗口";
  430. $ty[10]="普通网页对话框";
  431. $ty[11]="对联式广告";
  432. $myt[1]="文字广告";
  433. $myt[2]="html广告";
  434. $myt[3]="弹出广告";
  435. $myt[0]="图片与flash广告";
  436. //广告类别
  437. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsadclass");
  438. while($cr=$empire->fetch($csql))
  439. {
  440. $cselected='';
  441. if($classid==$cr['classid'])
  442. {
  443. $cselected=' selected';
  444. }
  445. $options.="<option value=".$cr[classid].$cselected.">".$cr[classname]."</option>";
  446. }
  447. ?>
  448. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  449. <html>
  450. <head>
  451. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  452. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  453. <title>管理广告</title>
  454. <script>
  455. function eCopyAdStr(adid,isjs){
  456. var str='';
  457. if(isjs==1)
  458. {
  459. str='<scri'+'pt src="<?=$public_r[newsurl]?>d/js/acmsd/<?=$public_r[adfile]?>'+adid+'.js"></scri'+'pt>';
  460. }
  461. else
  462. {
  463. str='[phomead]'+adid+'[/phomead]';
  464. }
  465. window.clipboardData.setData('Text',str);
  466. }
  467. </script>
  468. </head>
  469. <body>
  470. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  471. <tr>
  472. <td width="20%" height="25">位置:<a href="ListAd.php<?=$ecms_hashur['whehref']?>">管理广告</a></td>
  473. <td width="80%"><div align="right" class="emenubutton">
  474. <input type="button" name="Submit5" value="增加广告" onclick="self.location.href='AddAd.php?enews=AddAd<?=$ecms_hashur['ehref']?>';">&nbsp;&nbsp;
  475. <input type="button" name="Submit52" value="管理过期广告" onclick="self.location.href='ListAd.php?time=1<?=$ecms_hashur['ehref']?>';">&nbsp;&nbsp;
  476. <input type="button" name="Submit522" value="管理广告分类" onclick="self.location.href='AdClass.php<?=$ecms_hashur['whehref']?>';">
  477. </div></td>
  478. </tr>
  479. </table>
  480. <form name="form1" method="get" action="ListAd.php">
  481. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  482. <?=$ecms_hashur['eform']?>
  483. <tr>
  484. <td height="25" bgcolor="#FFFFFF">关键字:
  485. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  486. <select name="show">
  487. <option value="0"<?=$show==0?' selected':''?>>不限</option>
  488. <option value="1"<?=$show==1?' selected':''?>>广告名称 </option>
  489. <option value="2"<?=$show==2?' selected':''?>>备注</option>
  490. </select>
  491. <select name="classid" id="classid">
  492. <option value="0">不限类别</option>
  493. <?=$options?>
  494. </select> <select name="t" id="t">
  495. <option value="9"<?=$sear&&$t==9?' selected':''?>>不限广告类型</option>
  496. <option value="0"<?=$sear&&$t==0?' selected':''?>>图片与flash广告</option>
  497. <option value="1"<?=$sear&&$t==1?' selected':''?>>文字广告</option>
  498. <option value="2"<?=$sear&&$t==2?' selected':''?>>html广告</option>
  499. <option value="3"<?=$sear&&$t==3?' selected':''?>>弹出广告</option>
  500. </select>
  501. <input name="time" type="checkbox" id="time" value="1"<?=$time==1?' checked':''?>>
  502. 过期广告
  503. <input type="submit" name="Submit" value="搜索"> <input name="sear" type="hidden" id="sear" value="1"></td>
  504. </tr>
  505. </table>
  506. </form>
  507. <table width="100%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
  508. <tr class="header">
  509. <td width="4%" height="25"><div align="center">ID</div></td>
  510. <td width="20%"><div align="center">广告名称</div></td>
  511. <td width="11%"><div align="center">广告类型</div></td>
  512. <td width="7%"><div align="center">过期时间</div></td>
  513. <td width="18%"><div align="center">JS调用</div></td>
  514. <td width="5%"><div align="center">点击</div></td>
  515. <td width="18%"><div align="center">备注</div></td>
  516. <td width="17%"><div align="center">操作</div></td>
  517. </tr>
  518. <?
  519. while($r=$empire->fetch($sql))
  520. {
  521. ?>
  522. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  523. <td height="25"> <div align="center">
  524. <?=$r[adid]?>
  525. </div></td>
  526. <td> <div align="center">
  527. <b><?=$r[title]?></b>
  528. </div></td>
  529. <td> <div align="center">
  530. <?=$myt[$r[t]]?>
  531. <br>
  532. (<?=$ty[$r[adtype]]?>)</div></td>
  533. <td> <div align="center">
  534. <?=$r[endtime]?>
  535. </div></td>
  536. <td> <div align="center">
  537. <input name="textfield" type="text" value="<?=$public_r[newsurl]?>d/js/acmsd/<?=$public_r['adfile']?><?=$r[adid]?>.js" size="26">
  538. <br>
  539. <a href="#ecms" onclick="eCopyAdStr(<?=$r[adid]?>,1);" title="点击复制JS调用代码">JS调用</a> | <a href="#ecms" onclick="eCopyAdStr(<?=$r[adid]?>,0);" title="点击复制标签调用代码">标签调用</a><br>
  540. </div></td>
  541. <td> <div align="center">
  542. <?=$r[onclick]?>
  543. </div></td>
  544. <td> <div align="center">
  545. <textarea name="textarea" cols="20" rows="3"><?=$r[adsay]?></textarea>
  546. </div></td>
  547. <td> <div align="center"><a href="../view/js.php?js=<?=$public_r['adfile']?><?=$r[adid]?>&p=acmsd<?=$ecms_hashur['ehref']?>" target="_blank">预览</a> | <a href="AddAd.php?enews=EditAd&adid=<?=$r[adid]?>&time=<?=$time?><?=$ecms_hashur['ehref']?>">修改</a> | <a href="ListAd.php?enews=DelAd&adid=<?=$r[adid]?>&time=<?=$time?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a></div></td>
  548. </tr>
  549. <?
  550. }
  551. ?>
  552. <tr bgcolor="#FFFFFF">
  553. <td height="25" colspan="8">
  554. <?=$returnpage?>
  555. </td>
  556. </tr>
  557. </table>
  558. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  559. <tr>
  560. <td height="25"><font color="#666666">说明:调用方式:&lt;script src=广告js地址&gt;&lt;/script&gt;或用标签调用</font></td>
  561. </tr>
  562. </table>
  563. </body>
  564. </html>
  565. <?
  566. db_close();
  567. $empire=null;
  568. ?>