Favorites 收藏夹
收藏最喜欢的内容。Favorite content.
1.用户不能收藏自己的内容;
2.个人中心收藏夹,查看收藏内容;
3.支持自行删除收藏内容;
4.限制收藏数量1000,达到限制后提示清理后可继续收藏;
read.htm 模板使用钩子,自制模板添加如下代码
【钩子1】read_plugin_body.htm
<span class="text-center mx-1">
<!-- id="favorites" tid="<?php echo $thread['tid'];?>" 必须保留 -->
<a id="favorites" class="h5" rel="nofollow" tid="<?php echo $thread['tid'];?>" href="javascript:void(0);" title="<?php echo lang('well_favorites_tips');?>" aria-label="<?php echo lang('well_favorites_tips');?>">
<!-- <i class="icon-cube"></i> 可替换自己的图标 -->
<i class="icon-cube"></i>
</a>
<!-- id="favorites-n" 收藏次数 -->
<span id="favorites-n" class="ml-1 small">
<?php echo format_number($thread['well_favorites']);?>
</span>
</span>
【钩子2】read_js.htm
<script>
var uid = '<?php echo $uid;?>';
var body = $('body');
body.on('click', 'a#favorites', function () {
if (uid) {
var tid = $(this).attr('tid');
$.xpost(xn.url('home-favorites'), {'type': 0, 'tid':tid}, function (code, message) {
if (0 == code) {
var favorites = $('#favorites-n');
favorites.html(xn.intval(favorites.html()) 1);
$.alert(message);
} else {
$.alert(message);
}
});
} else {
$.ajax_modal(xn.url('user-login'), 'Login', 'md');
}
return false;
});
</script>
自制模板 home_favorites.htm
常见问题FAQ
- 免费下载或者VIP会员专享资源能否直接商用?
- 提示下载完但解压或打开不了?
- 找不到素材资源介绍文章里的示例图片??
- 钛宇宙
0条评论