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]');");
$adid=$empire->lastid();
//更新附件
UpdateTheFileOther(3,$adid,$add['filepass'],'other');
GetAdJs($adid);
if($sql)
{
//操作日志
insert_dolog("adid=".$adid."
title=".$add[title]);
printerror("AddAdSuccess","AddAd.php?enews=AddAd&t=".$add[t].hReturnEcmsHashStrHref2(0));
}
else
{printerror("DbError","history.go(-1)");}
}
//修改广告
function EditAd($add,$titlefont,$titlecolor,$userid,$username){
global $empire,$time,$dbtbpre;
$add[adid]=(int)$add[adid];
if(!$add[classid]||!$add[title]||!$add[adtype]||!$add[adid])
{printerror("EmptyAd","history.go(-1)");}
//验证权限
CheckLevel($userid,$username,$classid,"ad");
$add[htmlcode]=AddAddsData(RepPhpAspJspcodeText($add[htmlcode]));
$add[reptext]=AddAddsData(RepPhpAspJspcodeText($add[reptext]));
$ttitlefont=TitleFont($titlefont,'no');
//重置
if($add[reset])
{$a=",onclick=0";}
//变量处理
$add['title']=hRepPostStr($add['title'],1);
$add[pic_width]=(int)$add[pic_width];
$add[pic_height]=(int)$add[pic_height];
$add[classid]=(int)$add[classid];
$add[adtype]=(int)$add[adtype];
$add[t]=(int)$add[t];
$add[ylink]=(int)$add[ylink];
$add['filepass']=(int)$add['filepass'];
$add['picurl']=hRepPostStr2(eDoRepPostComStr($add['picurl'],1));
$add['url']=hRepPostStr2(eDoRepPostComStr($add['url'],1));
$add['target']=hRepPostStr($add['target'],1);
$add['alt']=hRepPostStr($add['alt'],1);
$add['starttime']=hRepPostStr($add['starttime'],1);
$add['endtime']=hRepPostStr($add['endtime'],1);
$add['adsay']=hRepPostStr2($add['adsay']);
$ttitlefont=AddAddsData($ttitlefont);
$titlecolor=AddAddsData($titlecolor);
$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]'");
UpdateTheFileEditOther(3,$add['adid'],'other');
GetAdJs($add[adid]);
if($sql)
{
//操作日志
insert_dolog("adid=".$add[adid]."
title=".$add[title]);
printerror("EditAdSuccess","ListAd.php?time=$time".hReturnEcmsHashStrHref2(0));
}
else
{printerror("DbError","history.go(-1)");}
}
//删除广告
function DelAd($adid,$userid,$username){
global $empire,$time,$public_r,$dbtbpre;
$adid=(int)$adid;
if(!$adid)
{printerror("NotDelAdid","history.go(-1)");}
//验证权限
CheckLevel($userid,$username,$classid,"ad");
$r=$empire->fetch1("select title from {$dbtbpre}enewsad where adid='$adid'");
$sql=$empire->query("delete from {$dbtbpre}enewsad where adid='$adid'");
$file="../../../d/js/acmsd/".$public_r[adfile].$adid.".js";
DelFiletext($file);
//删除附件
DelFileOtherTable("modtype=3 and id='$adid'");
if($sql)
{
//操作日志
insert_dolog("adid=".$adid."
title=".$r[title]);
printerror("DelAdSuccess","ListAd.php?time=$time".hReturnEcmsHashStrHref2(0));
}
else
{printerror("DbError","history.go(-1)");}
}
//批量生成广告
function ReAdJs_all($start=0,$from,$userid,$username){
global $empire,$public_r,$fun_r,$dbtbpre;
$moreportpid=(int)$_GET['moreportpid'];
$mphref='';
if($moreportpid)
{
$mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
}
$start=(int)$start;
if(empty($start))
{
$start=0;
}
$b=0;
$sql=$empire->query("select adid from {$dbtbpre}enewsad where adid>$start order by adid limit ".$public_r['readjsnum']);
while($r=$empire->fetch($sql))
{
$b=1;
$newstart=$r[adid];
GetAdJs($r[adid]);
}
if(empty($b))
{
//操作日志
insert_dolog("");
printerror("ReAdJsSuccess",$from);
}
echo $fun_r['OneReAdJsSuccess']."(ID:".$newstart.")";
exit();
}
//清除注释
function ClearHtmlZs($text){
$text=str_replace('','',$text);
$text=str_replace('-->','',$text);
return $text;
}
//生成广告js
function GetAdJs($adid){
global $empire,$public_r,$dbtbpre;
$r=$empire->fetch1("select * from {$dbtbpre}enewsad where adid='$adid'");
$file=eReturnTrueEcmsPath()."d/js/acmsd/".$public_r[adfile].$adid.".js";
//到期
if($r['endtime']<>'0000-00-00'&&time()>to_time($r['endtime']))
{
$r[reptext]=ClearHtmlZs($r[reptext]);
$h=addslashes(str_replace("\r\n","",$r[reptext]));
$html="document.write(\"".$h."\")";
WriteFiletext_n($file,$html);
return '';
}
if($r['ylink'])
{
$ad_url=$r['url'];
}
else
{
$ad_url=$public_r[newsurl]."e/public/ClickAd?adid=".$adid;//广告链接
}
//----------------------文字广告
if($r[t]==1)
{
$r[titlefont]=$r[titlecolor].','.$r[titlefont];
$picurl=DoTitleFont($r[titlefont],$r[picurl]);//文字属性
$h="".addslashes($picurl)."";
//普通显示
if($r[adtype]==1)
{
$html="document.write(\"".$h."\")";
}
//可移动透明对话框
else
{
$html="document.write(\"\");
document.write(\"
位置:管理广告 |
ID |
广告名称 |
广告类型 |
过期时间 |
JS调用 |
点击 |
备注 |
操作 |
=$r[adid]?>
|
=$r[title]?>
|
=$myt[$r[t]]?>
(=$ty[$r[adtype]]?>) |
=$r[endtime]?>
|
=$r[onclick]?>
|
|
||
=$returnpage?> |
说明:调用方式:<script src=广告js地址></script>或用标签调用 |