The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
![]()
Create New Plugin:
Hook: forumhome_complete Title: Most Actived Member Of The Week Execution Order : 5 Code Code:
$cutofftime = TIMENOW - 7*86400; $mostactive = $db->query_first("select count(postid) as count, post.userid, user.username from ".TABLE_PREFIX."post INNER JOIN ".TABLE_PREFIX."user on user.userid = post.userid where post.dateline > $cutofftime GROUP BY post.userid ORDER BY count DESC LIMIT 1"); vB_Template::preRegister('FORUMHOME',array('mostactive' => $mostactive)); Now To Display Username of the Most Active Member Use: Code:
{vb:raw mostactive.username} anywhere in the FORUMHOME TEMPLATE |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|