藏茗山学院
安全可靠、性能稳定、追求极致的用户体验
jeebbsV5.x系统标签大全
论坛统计标签 [@config_count]
[@config_count]
今日帖数: ${configcache.postToday!}
昨日帖数: ${configcache.postYestoday!}
最高日帖数: ${configcache.postMax!} 于 ${configcache.postMaxDate?string("yyyy-MM-dd")!}
总主题数: ${configcache.topicTotal!}
总帖子: ${configcache.postTotal!}
会员总数: ${configcache.userTotal!}
欢迎新会员: [#if configcache.lastUser??]${configcache.lastUser.username!}[#else]无[/#if]
[/@config_count]
我的好友申请列表 [@friend_apply_page]
[@friend_apply_page userId=user.id count=5]
[#list tag_pagination.list as friendship]
${(friendship.user.username)!}
[/#list]
[#include "../tag/topic.html"/]
[/@friend_apply_page]
标签参数说明
userId:用户ID count 分页数
板块对象属性
状态: status 0:申请中;1:接受;2:拒绝
关联对象类型有:
好友对象:user
搜索用户列表 [@friend_page]
[@friend_page username='test' count=10]
[#list tag_list as friend]
${friend.username!}
[/#list]
[#include "../tag/topic.html"/]
[/@friend_page]
标签参数说明
username:查询的用户名 count 分页数
用户对象属性
3.1用户对象属性
不带分页列表
[@friend_list username='test' count=10]
[#list tag_list as friend]
${friend.username!}
[/#list]
[/@friend_list]
消息列表 [@mymsg_page]
[@mymsg_page userId=user.id count=10]
[#list tag_pagination.list as msg]
${msg.sender.username!} 对 ${msg.receiver.username!} 说
[@text_cut s=msg.content append='...' len=20/]
${msg.createTime?string("yyyy-MM-dd HH:mm")}
[/#list]
[#include "../tag/topic.html"/]
[/@mymsg_page]
标签参数说明
userId:查询的用户id count 分页数
对象属性
消息发送用户对象sender
消息接收用户对象receiver
消息内容 content
消息时间 createTime 时间类型
消息回复列表 [@msg_reply_page]
[@msg_reply_page mid=msg.id count=10]
[#list tag_pagination.list as reply]
${reply.sender.username}
${reply.createTime?string("yyyy-MM-dd HH:mm")}
${reply.content!}
<br/>
[/#list]
[#include "../tag/topic.html"/]
[/@msg_reply_page]
标签参数说明
mid:查询的消息ID count 分页数
对象属性
消息发送用户对象sender
消息接收用户对象receiver
消息内容 content
消息时间 createTime 时间类型