当前位置: 首页 > 站长资讯 > 正文页面

帝国cms:扣除会员积分实现信息置顶功能(到期后取消置顶)

首先在所需的系统模型中添加int字段 top 单选按钮0,1(0为否,1为是)fb0网站目录_网站网址收录与提交入口

主要修改e/class/qinfofun.php两处 一处为增加,一处为编辑fb0网站目录_网站网址收录与提交入口

1。fb0网站目录_网站网址收录与提交入口

在文件中找到fb0网站目录_网站网址收录与提交入口

esetcookie("lastaddinfotime",time(),time()+3600*24);fb0网站目录_网站网址收录与提交入口

下面到//-------------修改fb0网站目录_网站网址收录与提交入口

全部替换为:fb0网站目录_网站网址收录与提交入口

//置顶扣分fb0网站目录_网站网址收录与提交入口

$t=$empire->fetch1("select top from {$dbtbpre}ecms_".$tbname." where userid='$muserid' and id='$id' and classid='$classid' limit 1");fb0网站目录_网站网址收录与提交入口

if($t[top])fb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$w=$empire->fetch1("select userfen from {$dbtbpre}enewsmember where userid='$muserid'");fb0网站目录_网站网址收录与提交入口

if($w[userfen]>=10)fb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$sql3=$empire->query("update {$dbtbpre}enewsmember set userfen=userfen-10 where userid='$muserid'");fb0网站目录_网站网址收录与提交入口

printerror("AddQinfoSuccess",$reurl,1);fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

elsefb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$sql4=$empire->query("update {$dbtbpre}ecms_".$tbname." set top=0 where userid='$muserid' and id='$id' and classid='$classid' limit 1");fb0网站目录_网站网址收录与提交入口

printerror("jifenbugou",$reurl,1);fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

else{printerror("AddQinfoSuccess",$reurl,1);}fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

elsefb0网站目录_网站网址收录与提交入口

{printerror("DbError","history.go(-1)",1);}fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

2.找到fb0网站目录_网站网址收录与提交入口

if($sql)fb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$reurl=DoingReturnUrl("ListInfo.php?mid=$mid",$add['ecmsfrom']);fb0网站目录_网站网址收录与提交入口

if($add['editgotoinfourl']&&$infor['checked'])//返回内容页fb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

if($cr['showdt']==1)fb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$reurl=$public_r[newsurl]."e/action/ShowInfo/?classid=$classid&id=$id";fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

elseif($cr['showdt']==2)fb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$reurl=$public_r[newsurl]."e/action/ShowInfo.php?classid=$classid&id=$id";fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

elsefb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$reurl=$titleurl;fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

在其下至//---------------删除之间替换为:fb0网站目录_网站网址收录与提交入口

//置顶扣分fb0网站目录_网站网址收录与提交入口

$t=$empire->fetch1("select top from {$dbtbpre}ecms_".$tbname." where userid='$muserid' and id='$id' and classid='$classid' limit 1");fb0网站目录_网站网址收录与提交入口

if($t[top])fb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$w=$empire->fetch1("select userfen from {$dbtbpre}enewsmember where userid='$muserid'");fb0网站目录_网站网址收录与提交入口

if($w[userfen]>=10)fb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$sql3=$empire->query("update {$dbtbpre}enewsmember set userfen=userfen-10 where userid='$muserid'");fb0网站目录_网站网址收录与提交入口

printerror("EditQinfoSuccess",$reurl,1);fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

elsefb0网站目录_网站网址收录与提交入口

{fb0网站目录_网站网址收录与提交入口

$sql4=$empire->query("update {$dbtbpre}ecms_".$tbname." set top=0 where userid='$muserid' and id='$id' and classid='$classid' limit 1");fb0网站目录_网站网址收录与提交入口

printerror("jifenbugou",$reurl,1);fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

else{printerror("EditQinfoSuccess",$reurl,1);}fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

elsefb0网站目录_网站网址收录与提交入口

{printerror("DbError","history.go(-1)",1);}fb0网站目录_网站网址收录与提交入口

}fb0网站目录_网站网址收录与提交入口

注意红色部分的10为扣除的积分自行设置,还有jifenbuzhu自己可以该为自己需要的提示在e/data/language/gb/pub/q_message.php中添加(gb2312版)fb0网站目录_网站网址收录与提交入口

又添加这个字段主要是避免与老大的那个firsttitle起冲突,避免以后升级带来的麻烦fb0网站目录_网站网址收录与提交入口

假如会员积分不足提示积分不足但信息仍让可以提交只是不能置顶。。。。。。fb0网站目录_网站网址收录与提交入口

在列表模板中调用方法:fb0网站目录_网站网址收录与提交入口

[e:loop={"select * from phome_ecms_house where top=1 and checked=1 and classid='$GLOBALS[navclassid]' limit 3",3,24,0}]fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

[置顶]

fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

[/e:loop]fb0网站目录_网站网址收录与提交入口

//01.23日更新功能添加到期时间字段date 到期之后置顶功能无效fb0网站目录_网站网址收录与提交入口

上面的列表模板sql中添加 and (unix_timestamp(youxiaoqi)-UNIX_TIMESTAMP(NOW()))>0fb0网站目录_网站网址收录与提交入口

模板大家自己修改,如有什么问题大家跟帖我会尽量解答fb0网站目录_网站网址收录与提交入口

上传以下图片:fb0网站目录_网站网址收录与提交入口


fb0网站目录_网站网址收录与提交入口

 fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

fb0网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章